diff options
| author | raysan5 <[email protected]> | 2020-12-26 13:09:34 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-12-26 13:09:34 +0100 |
| commit | 521ed1cef0c0dbc752cb79f70c21bb4fc3bf70d4 (patch) | |
| tree | 1ed941e228c766bff6a6132a3f7d2efb4b797edf /src/raylib.h | |
| parent | de13fca3b1da643c74be37d16df5e30cd7198457 (diff) | |
| download | raylib-521ed1cef0c0dbc752cb79f70c21bb4fc3bf70d4.tar.gz raylib-521ed1cef0c0dbc752cb79f70c21bb4fc3bf70d4.zip | |
Review DrawLineBezierQuad(), formating and aprameters order
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 35afce38..031640b1 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1090,7 +1090,7 @@ RLAPI void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Colo 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 DrawLineBezierQuad(Vector2 startPos,Vector2 controlPos,Vector2 endPos, float thick, Color color);//Draw line using quadratic bezier curves with a control point +RLAPI void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color); //Draw line using quadratic bezier curves with a control point RLAPI void DrawLineStrip(Vector2 *points, int pointsCount, Color color); // Draw lines sequence 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, int segments, Color color); // Draw a piece of a circle |
