09-07-2023, 03:51 PM
Hey @blus, I think I see the problem...
The G2D.FillEllipse method takes 6 parameters:
G2D.FillEllipse x&, y&, radiusX&, radiusY& [, rotation& ][, clr~&]
The last two parameters are optional. But if you want to specify color you should just use 0 for rotation or leave that parameter blank.
The G2D.FillEllipse method takes 6 parameters:
G2D.FillEllipse x&, y&, radiusX&, radiusY& [, rotation& ][, clr~&]
The last two parameters are optional. But if you want to specify color you should just use 0 for rotation or leave that parameter blank.
Code: (Select All)
G2D.Ellipse cx, cy, lastr, 29 / 35 * pr, 0, &HFF000000
ORCode: (Select All)
G2D.Ellipse cx, cy, lastr, 29 / 35 * pr, , &HFF000000