Mnemonics
'CIRCLE' Define / Draw a Circle
GUI Display/Printer
 
Format 'CIRCLE'(x,y,radius,aspect)
 
Where:
aspect
Numeric aspect ratio / viewpoint. (Ratio=1 results in no tilt.) radius
Coordinates for the centre of the drawing, in graphical units.
Numeric expression.
 
Description Use 'CIRCLE' to draw (print) a circle on the device. For x, y, and radius, use graphical units or the @X( ) / @Y( ) Functions. The 'CIRCLE' mnemonic uses the current attributes for 'FILL' Define Fill Style, and 'PEN' Define Pen Style.
 
Example 0170 PRINT 'PEN'(1,3,1),'FILL'(2,6)
0180 PRINT 'CIRCLE'(720,600,100,1)
0190 PRINT 'PEN'(1,3,6),'CIRCLE'(950,600,100,2)