| 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 | |
| 334 | void DrawPoly(int sides, float radius, float rotation, ::Color color = {0, 0, 0, 255}) const { |
| 335 | ::DrawPoly(*this, sides, radius, rotation, color); |
nothing calls this directly
no outgoing calls
no test coverage detected