home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / OVAL.(X) < prev    next >
Text File  |  1993-10-10  |  206b  |  6 lines

  1. #    oval(x,y,XRadius,YRadius) draws an oval of XRadius and YRadius
  2. #    as the horizontal and vertical axes at point(x,y).
  3. #    It must be in graphics mode.
  4.  
  5. oval(x_, y_, xr_, yr_) := ellipse(x,y,0,360,xr,yr)
  6.