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

Method DrawRounded

include/Rectangle.hpp:92–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 void DrawLines(::Color color, float lineThick) const { ::DrawRectangleLinesEx(*this, lineThick, color); }
91
92 void DrawRounded(float roundness, int segments, ::Color color) const {
93 ::DrawRectangleRounded(*this, roundness, segments, color);
94 }
95
96 void DrawRoundedLines(float roundness, int segments, ::Color color) const {
97 ::DrawRectangleRoundedLines(*this, roundness, segments, color);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected