* Draw a color-filled circle (Vector version) */
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected