summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-03-14 00:22:53 +0100
committerraysan5 <[email protected]>2017-03-14 00:22:53 +0100
commit3813722f170066c3113d4a3ef6a21ec53af71034 (patch)
tree175e98a2332565bf42a09596650646a70ad63f2b /src/raylib.h
parent63c65f8cc5d3173fedb74164ed2b89b9e2b776ea (diff)
downloadraylib-3813722f170066c3113d4a3ef6a21ec53af71034.tar.gz
raylib-3813722f170066c3113d4a3ef6a21ec53af71034.zip
Added function: DrawLineBezier()
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index b0f03bbe..85689378 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -764,6 +764,7 @@ RLAPI void DrawPixelV(Vector2 position, Color color);
RLAPI void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color); // Draw a line
RLAPI void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); // Draw a line (Vector version)
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 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)