summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes/shapes_splines_drawing.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shapes/shapes_splines_drawing.c')
-rw-r--r--examples/shapes/shapes_splines_drawing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes/shapes_splines_drawing.c b/examples/shapes/shapes_splines_drawing.c
index 58fcaf69..cfac931b 100644
--- a/examples/shapes/shapes_splines_drawing.c
+++ b/examples/shapes/shapes_splines_drawing.c
@@ -167,7 +167,7 @@ int main(void)
// Draw spline: cubic-bezier (with control points)
for (int i = 0; i < pointCount - 1; i++)
{
- DrawSplineBezierCubic(points[i], control[i].start, control[i].end, points[i + 1], 2.0f, RED);
+ DrawSplineSegmentBezierCubic(points[i], control[i].start, control[i].end, points[i + 1], 10.0f, RED);
// Every cubic bezier point should have two control points
DrawCircleV(control[i].start, 4, GOLD);