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