-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.ImageDrawCircleLinesV
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Draw circle outline within an image (Vector version)
| Parameter | Default Value | Note |
|---|---|---|
| dst | ||
| center | ||
| radius | ||
| color |
None.
img = raylib.GenImageColor(128, 128, raylib.BLACK)
raylib.ImageDrawCircleLinesV img, [64, 64], 32, raylib.WHITE
raylib.ExportImage img, "circle_outline_v.png"
raylib.UnloadImage img