diff options
| author | Ray <[email protected]> | 2019-02-13 00:06:06 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-02-13 00:06:06 +0100 |
| commit | 297dd641e8b80f962c3db05915b7033d5b2508c6 (patch) | |
| tree | ca93e598f4c22a701cd43721f727f95114e078cd /src/raylib.h | |
| parent | e46c23128eb4765590e30751a9be51c76607ee07 (diff) | |
| download | raylib-297dd641e8b80f962c3db05915b7033d5b2508c6.tar.gz raylib-297dd641e8b80f962c3db05915b7033d5b2508c6.zip | |
ADDED: DrawCircleSector()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index f09a2a24..17a6efc6 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1033,6 +1033,7 @@ RLAPI void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); RLAPI void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a line defining thickness RLAPI void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a line using cubic-bezier curves in-out RLAPI void DrawCircle(int centerX, int centerY, float radius, Color color); // Draw a color-filled circle +RLAPI void DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, Color color); // Draw a piece of a circle 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 |
