home *** CD-ROM | disk | FTP | other *** search
- #define MAXCHAR 1000 /* Maximum no of chars in a line */
- #define MAXPTS 1000 /* Maximum no of points in an array */
- #define MAXTYPE 100 /* Maximum no of line/marker types */
- #define MAXKEY 15 /* maximum no of keywords */
-
- #define esc '\033' /* ESC character (ascii) */
- #define PSFILE "dataplot.ps" /* postscript file */
- #define CTFILE "image.cont" /* single contour file */
-
- char *term; /* terminal type */
- char xlabel[MAXCHAR]; /* x-label */
- char ylabel[MAXCHAR]; /* y-label */
- char toplabel[MAXCHAR]; /* top label */
- char printer[MAXCHAR]; /* printer type */
-
- /* plotting options */
- int grid,equalscale,postscript,printplot;
- int xticks,yticks;
- int linetypes;
- int contlabel;
- int landscape;
- int joincurve;
- char *joinlevel;
- double scale;
-