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

  1.  
  2. /* function to draw an ellipse */
  3. void grelipa(x0,y0,coldiff,rowdiff,c,fill,an,ad)
  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,0);
  14. }
  15.  
  16.