home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 266_01 / pxlib.h < prev    next >
C/C++ Source or Header  |  1990-04-21  |  1KB  |  23 lines

  1. /*       Front End Plot Drawing Routines      File: PXLIB.H
  2.             04-21-90
  3.          WITH MATHLIB
  4. */
  5. void PX_Close  (int X,  int Y);  /* Close the plot file */
  6. void PX_Dot    (int X,  int Y);  /* Turn on X,Y pixel. */
  7. void PX_Draw   (int X,  int Y);  /* Draw vector to X,Y pixel loc. */
  8. void PX_Hatch  (int X1, int Y1,
  9.                 int X2, int Y2); /* Hatch an area */
  10. void PX_Hue    (int Color);      /* Set color */
  11. void PX_Margin (int Column);     /* Set plot left margin */
  12. void PX_Move   (int X, int Y);   /* Move to X,Y pixel loc. */
  13. void PX_Open   (void);           /* Open the plot file */
  14. void PX_Origin (int X, int Y);   /* Set new plot origin */
  15. void PX_Style  (int Type,        /* Set hatching pattern */
  16.                 int Spacing);
  17. void PX_Symbol (int Shape);      /* Draw symmetrical, centered symbol */
  18. void PX_Text   (int X, int Y,    /* Draws a string of text */
  19.                 int Size,
  20.                 char Dir,
  21.                 char *Text_Ptr);
  22. void PX_Trail  (int  Mark);      /* Sets the line type */
  23.