home *** CD-ROM | disk | FTP | other *** search
-
- /* function to draw an ellipse */
- void grelip(x0,y0,coldiff,rowdiff,c,fill)
- int x0; /* column corrdinate of center of ellipse */
- int y0; /* row coordinate of center of ellipse */
- int coldiff; /* size of ellipse along x axis */
- int rowdiff; /* size of ellipse along y axis */
- int c; /* color of ellipse */
- int fill; /* fill ellipse with color (1-yes,0-no) */
- {
-
- eg_ellipse(x0,y0,coldiff,rowdiff,c,fill,0);
- }