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

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