-
Notifications
You must be signed in to change notification settings - Fork 10
G2D.FillCircle
boxgaming edited this page Sep 29, 2023
·
4 revisions
Draws a filled circle.
G2D.FillCircle x&, y&, radius&[, clr~&]
- The circle will be drawn with its center at the position specified by the x& and y& parameters.
- The size of the circle is defined by the radius& parameter.
- The optional color~& parameter defines the color of the triangle. If not specified, the default color will be used.
Example1: Draw numerous filled circles of random size at random locations.
Import G2D From "lib/graphics/2d.bas"
Randomize Timer
For i = 0 to 500
G2D.FillCircle Rnd * 640, Rnd * 400, Rnd * 40 + 10, Rnd * 14 + 1
_Limit 200
Next i