home *** CD-ROM | disk | FTP | other *** search
-
- /* function to draw an ellipse */
- void grelipa(x0,y0,coldiff,rowdiff,c,fill,an,ad)
- 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) */
- int an,ad;
- {
- setaspec(an,ad);
- eg_ellipse(x0,y0,coldiff,rowdiff,c,fill,0);
- }
-