fillCircle()

Draw a filled circle with current ink color at given coordinates with given radius. Radius must be positive number.

Syntax:
fillCircle( x , y , radius )

Example:
for n = 1 to 100
    ink(rnd(16000000))
    fillCircle( rnd(640), rnd(480), rnd(200) )
    next
waitKey