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

Function DrawCircle

include/Vector2.hpp:330–330  ·  view source on GitHub ↗

* Draw a color-filled circle (Vector version) */

Source from the content-addressed store, hash-verified

328 * Draw a color-filled circle (Vector version)
329 */
330 void DrawCircle(float radius, ::Color color = {0, 0, 0, 255}) const { ::DrawCircleV(*this, radius, color); }
331
332 void DrawRectangle(::Vector2 size, ::Color color = {0, 0, 0, 255}) const { ::DrawRectangleV(*this, size, color); }
333

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected