home *** CD-ROM | disk | FTP | other *** search
- /* function to draw passed quadrant(s) of an ellipse */
- void grelipqa(quad,x0,y0,coldiff,rowdiff,c,fill,an,ad)
- int quad; /* quadrant(s) to plot */
- 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,quad);
- }
-