circle()
Draw an empty circle with current ink color at given coordinates with given radius. Radius mus be positive number.
Syntax:
circle(
x
,
y
,
radius
)
Example:
for n = 1 to 100
ink(rnd(16000000))
circle( rnd(640), rnd(480), rnd(200) )
next
waitKey