home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m242 / 2.ddi / VER2FUNC.ZIP / GRELIPQ.C < prev    next >
Encoding:
Text File  |  1989-10-16  |  487 b   |  13 lines

  1. /* function to draw passed quadrant(s) of an ellipse */
  2. void grelipq(quad,x0,y0,coldiff,rowdiff,c,fill)
  3. int quad; /* quadrant(s) to plot */
  4. int x0; /* column corrdinate of center of ellipse */
  5. int y0; /* row coordinate of center of ellipse */
  6. int coldiff; /* size of ellipse along x axis */
  7. int rowdiff; /* size of ellipse along y axis */
  8. int c; /* color of ellipse */
  9. int fill; /* fill ellipse with color (1-yes,0-no) */
  10. {
  11.     eg_ellipse(x0,y0,coldiff,rowdiff,c,fill,quad);
  12. }
  13.