ellipse()

現在のスクリーンに現在のインクカラーで楕円を描く。Radiusは正の値であること。

書式:
ellipse( x , y , radiusx , radiusy )

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