home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 329.lha / MultiPlot / source / struct.h < prev    next >
C/C++ Source or Header  |  1990-01-05  |  655b  |  41 lines

  1. /* struct.h */
  2. #ifndef FFP_H
  3. #include "ffp.h"
  4. #endif
  5.  
  6. struct PlotRegion {
  7.    FFP XMin, XMax, YMin, YMax;
  8. };
  9.  
  10. struct Plot {
  11.    struct Plot *NextPlot;
  12.    short NPts;
  13.    short Color;
  14.    short PointSize;
  15.    short Enabled;
  16.    short Continued;
  17.    struct PlotRegion *Reg;
  18.    FFP *x, *y, *e;
  19.    short *xp, *yp, *ep;
  20. };
  21.  
  22. struct Tics {
  23.    short NX, NY;
  24.    short *xp, *yp;
  25.    FFP *x, *y;
  26. };
  27.  
  28. struct Pict  {
  29.    short NPlt;
  30.    short Grid;
  31.    short ErrBar;
  32.    short ShowErr;
  33.    short XRegionLock, YRegionLock;
  34.    short Axes;
  35.    struct Tics *Tics;
  36.    struct PlotRegion *CurrReg, *NewReg;
  37.    FFP XScale, YScale;
  38.    char *Title, *XLabel, *YLabel;
  39.    struct Plot *Plot;
  40. };
  41.