/* plotlim.h */
#define MAXHORIZ 640
#define MAXVERT 400
#define CHARWIDTH 8
#define CHARHEIGHT 8
#define LMARGIN (CHARWIDTH * 7)
#define RMARGIN 2
#define TMARGIN 8
#define BMARGIN (CHARHEIGHT * 4)
#define XMAXP (MAXHORIZ-RMARGIN)
#define XMINP LMARGIN
#define YMAXP (MAXVERT-TMARGIN)
#define YMINP BMARGIN

#define MAXTICS 20
#define NTICS_DEFAULT 6
#define X_TIC_SIZE 6
#define Y_TIC_SIZE 8
#define PLOTCOLORBASE 4
#define DEFAULT_POINT_SIZE 4

