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

  1. /* function to draw passed quadrant(s) of an ellipse */
  2. void grelipqa(quad,x0,y0,coldiff,rowdiff,c,fill,an,ad)
  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. int an,ad;
  11. {
  12.     setaspec(an,ad);
  13.     eg_ellipse(x0,y0,coldiff,rowdiff,c,fill,quad);
  14. }
  15.  
  16.