home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / ELLIPSE.KEY < prev    next >
Text File  |  1993-11-07  |  491b  |  10 lines

  1. * ellipse                                                 internal
  2. ellipse(x,y,angle1,angle2,XRadius,YRadius) draws an elliptical arc from
  3. angle1 to angle2 with XRadius and YRadius as the horizontal and vertical
  4. axes at point(x,y). The angles are counter-clockwise with 0 degrees at
  5. o'clock, 90 degrees at 12 o'clock, and so on.
  6. it only works on graphics mode.
  7. See also: arc, ellipse, line, lineto, linerel, putpixel.
  8. e.g.
  9. IN:  graph, ellipse(100,100,0,180,200,100), readchar, text
  10.