home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 266_01 / imaglib.h < prev    next >
Text File  |  1990-05-02  |  494b  |  17 lines

  1. /*                                                FILE: IMAGLIB.H
  2. */
  3.  
  4. void Dot (int X, int Y);   /* Turns on the pixel at X,Y  */
  5.  
  6. void Draw (int Xmax, int Ymax, int Bold);
  7. /*   ====  Draws the memory image on the printer.  */
  8.  
  9. void Line (int X1, int Y1, int X2, int Y2);
  10. /*   ====               Draws a straight line */
  11.  
  12. void NewImage (void);
  13. /*   ========   Clears the plot image (to binary zeros) */
  14.  
  15. void NoDot (int X, int Y);
  16. /*   =====      Turns off the pixel at X,Y  */
  17.