MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / DrawCircle

Function DrawCircle

include/Image.hpp:624–626  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

622 }
623
624 void DrawCircle(int centerX, int centerY, int radius, ::Color color = {255, 255, 255, 255}) {
625 ::ImageDrawCircle(this, centerX, centerY, radius, color);
626 }
627
628 void DrawCircle(::Vector2 center, int radius, ::Color color = {255, 255, 255, 255}) {
629 ::ImageDrawCircleV(this, center, radius, color);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected