ADDED: DrawCircleLinesEx(), simpler naming than DrawRing()

This commit is contained in:
Ray
2026-06-07 18:48:16 +02:00
parent a41bb7c07a
commit d3d1b0cbcc
2 changed files with 6 additions and 0 deletions

View File

@@ -510,6 +510,11 @@ void DrawCircleLinesV(Vector2 center, float radius, Color color)
rlEnd();
}
void DrawCircleLinesEx(Vector2 center, float radius, float thick, Color color)
{
DrawRing(center, radius - thick, radius, 0.0f, 360.0f, 36, color);
}
// Draw ellipse
void DrawEllipse(int centerX, int centerY, float radiusH, float radiusV, Color color)
{