diff options
| author | Ray <raysan5@gmail.com> | 2019-03-28 18:53:41 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2019-03-28 18:53:41 +0100 |
| commit | 88dfd2ab236a28db3cf1e3715b9e98a426de48d6 (patch) | |
| tree | b0fdc8c61b15fe26e4d5a27c9024f4bd4586f093 /src/raylib.h | |
| parent | 186d34827af93ec760c81a2abea09991c01556b3 (diff) | |
| download | raylib-88dfd2ab236a28db3cf1e3715b9e98a426de48d6.tar.gz raylib-88dfd2ab236a28db3cf1e3715b9e98a426de48d6.zip | |
REDESIGNED: DrawCircleSector()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index c72f0682..5db50c04 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1043,7 +1043,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 DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, int segments, 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 |
