You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
258 B
12 lines
258 B
#ifndef _GRID_H
|
|
#define _GRID_H
|
|
|
|
/* Grid types.
|
|
|
|
Note: SMITHGRID is only a smith grid, SMITH transforms the data */
|
|
typedef enum {
|
|
GRID_NONE, GRID_LIN, GRID_LOGLOG, GRID_XLOG,
|
|
GRID_YLOG, GRID_POLAR, GRID_SMITH, GRID_SMITHGRID
|
|
} GRIDTYPE;
|
|
|
|
#endif
|