grid.h

来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C头文件 代码 · 共 19 行

H
19
字号
/************* * Header file for grid.c * 1999 E. Rouat ************/#ifndef GRID_H_INCLUDED#define GRID_H_INCLUDEDtypedef enum { x_axis, y_axis } Axis;void gr_fixgrid(GRAPH *graph, double xdelta, double ydelta, int xtype, int ytype);void gr_redrawgrid(GRAPH *graph);void drawlingrid(GRAPH *graph, char *units, int spacing, int nsp, double dst, double lmt, 		 double hmt, bool onedec, int mult, double mag, int digits, Axis axis);void drawloggrid(GRAPH *graph, char *units, int hmt, int lmt, int decsp, int subs, 		 int pp, Axis axis);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?