SDLBAS / circle.sdlbas


SDLBAS?

名前

circle

書式

circle( x , y , radius )

説明

x,yを中心とした円を描く

例題

  • circle.sdlbas

' 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 )


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