diff options
| author | Ray <[email protected]> | 2020-01-27 16:21:37 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-01-27 16:21:37 +0100 |
| commit | 4f7d090fb2f639a9b68378e7250fc159a43acd8d (patch) | |
| tree | 8609508a8abbcbbfbf11bb416484505cb12904c0 /src/raylib.h | |
| parent | 954f029118260dce867c1bf6ff3948ca6a6bee85 (diff) | |
| download | raylib-4f7d090fb2f639a9b68378e7250fc159a43acd8d.tar.gz raylib-4f7d090fb2f639a9b68378e7250fc159a43acd8d.zip | |
ADDED: DrawEllipse() and DrawEllipseLines() #1047
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 2b5ff3e5..97e37057 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1059,6 +1059,8 @@ RLAPI void DrawCircleSectorLines(Vector2 center, float radius, int startAngle, i RLAPI void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2); // Draw a gradient-filled circle RLAPI void DrawCircleV(Vector2 center, float radius, Color color); // Draw a color-filled circle (Vector version) RLAPI void DrawCircleLines(int centerX, int centerY, float radius, Color color); // Draw circle outline +RLAPI void DrawEllipse(int centerX, int centerY, float radiusH, float radiusV, Color color); // Draw ellipse +RLAPI void DrawEllipseLines(int centerX, int centerY, float radiusH, float radiusV, Color color); // Draw ellipse outline RLAPI void DrawRing(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); // Draw ring RLAPI void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); // Draw ring outline RLAPI void DrawRectangle(int posX, int posY, int width, int height, Color color); // Draw a color-filled rectangle |
