home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / do1beta.zip / ELLIPSE.DO < prev    next >
Text File  |  1991-07-18  |  293b  |  13 lines

  1. /*
  2.     demo of the BGI ellipse methods
  3. */
  4. #include "bgidef.do"
  5.  
  6. initGraph(DETECT,0,envSymbol("bgipath"));
  7. outTextXY(200,50,"BGI Ellipse Demonstration");
  8. ellipse(200,200,0,360,200,100);
  9. fillEllipse(300,400,150,50);
  10. outTextXY(20,450,"Press any key to continue");
  11. inkey();
  12. closeGraph();
  13.