home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BGRAPH.H Header file for the graphics functions of C TOOLS PLUS
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1986
- *
- **/
-
- #ifndef DEF_BGRAPH /* Prevent redefinition. */
-
- struct point
- {
- int x; /* Horizontal coordinate */
- int y; /* Vertical coordinate */
- };
- #define PT struct point /* Abbreviation */
-
- extern PT b_home;
- extern int b_maxx,b_maxy;
-
- int grinit(int,int,int); /* Set graphics mode */
- /* */
- int grptwrit(PT *,int); /* Plot a point */
- /* */
- int grptread(PT *); /* Read the color of a point */
- /* */
- int grline(PT *,PT *,int); /* Draw a line */
- /* */
- int gramove(PT *,int); /* Absolute move from home */
- /* */
- int grrmove(int,int,int); /* Relative move from home */
-
- /* Aliases for previous names */
-
- #define home b_home
- #define max_x b_maxx
- #define max_y b_maxy
-
-
- #define DEF_BGRAPH 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BGRAPH" */