09-07-2023, 09:01 PM
(This post was last modified: 09-07-2023, 09:03 PM by mnrvovrfc.
Edit Reason: "before" not "after" (roll eyes)
)
THEIRS:
YOURS:
You're still missing one parameter before 32-bit color which is last.
Your sub headers to draw ellipse:
As dbox already said, you need "rotation" before "color" parameter.
Code: (Select All)
G2D.Ellipse cx, cy, lastr, 29 / 35 * pr, 0, &HFF000000YOURS:
Code: (Select All)
ellipse cx, cy, lastr, 29 / 35 * pr, &HFF000000You're still missing one parameter before 32-bit color which is last.
Your sub headers to draw ellipse:
Code: (Select All)
Sub fEllipse (CX As Long, CY As Long, xRadius As Long, yRadius As Long, c As _Unsigned Long)
Sub ellipse (CX As Long, CY As Long, xRadius As Long, yRadius As Long, c As _Unsigned Long)As dbox already said, you need "rotation" before "color" parameter.


