home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BGRAPH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  1.2 KB  |  44 lines

  1. /**
  2. *
  3. *  BGRAPH.H  Header file for the graphics functions of C TOOLS PLUS
  4. *
  5. *  Version 3.0    (C)Copyright Blaise Computing Inc.  1983, 1984, 1986
  6. *
  7. **/
  8.  
  9. #ifndef DEF_BGRAPH              /* Prevent redefinition.          */
  10.  
  11. struct point
  12. {
  13.   int x;                  /* Horizontal coordinate          */
  14.   int y;                  /* Vertical coordinate          */
  15. };
  16. #define PT    struct point          /* Abbreviation              */
  17.  
  18. extern PT  b_home;
  19. extern int b_maxx,b_maxy;
  20.  
  21. int grinit(int,int,int);          /* Set graphics mode          */
  22.                       /*                  */
  23. int grptwrit(PT *,int);           /* Plot a point              */
  24.                       /*                  */
  25. int grptread(PT *);              /* Read the color of a point    */
  26.                       /*                  */
  27. int grline(PT *,PT *,int);          /* Draw a line              */
  28.                       /*                  */
  29. int gramove(PT *,int);              /* Absolute move from home      */
  30.                       /*                  */
  31. int grrmove(int,int,int);          /* Relative move from home      */
  32.  
  33.     /* Aliases for previous names                      */
  34.  
  35. #define home    b_home
  36. #define max_x    b_maxx
  37. #define max_y    b_maxy
  38.  
  39.  
  40. #define DEF_BGRAPH  1              /* Prevent second reading of    */
  41.                       /* these definitions.          */
  42.  
  43. #endif                      /* Ends "#ifndef DEF_BGRAPH"    */
  44.