From bbf0c3a46d27b723e73483bdd787c7713b31fe1a Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 8 Nov 2023 17:41:08 +0100 Subject: REVIEWED: Added new examples to VS2022 solution --- examples/shapes/shapes_lines_bezier.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/shapes/shapes_lines_bezier.c') diff --git a/examples/shapes/shapes_lines_bezier.c b/examples/shapes/shapes_lines_bezier.c index 5bd916ee..785d73a6 100644 --- a/examples/shapes/shapes_lines_bezier.c +++ b/examples/shapes/shapes_lines_bezier.c @@ -60,11 +60,11 @@ int main(void) DrawText("USE MOUSE LEFT-RIGHT CLICK to DEFINE LINE START and END POINTS", 15, 20, 20, GRAY); - // Draw line cubic-bezier, in-out interpolation (easing), no control points + // Draw line Cubic Bezier, in-out interpolation (easing), no control points DrawLineBezier(start, end, 3.0f, BLUE); - // Draw spline cubic-bezier with control points - DrawSplineBezierCubic(start, startControl, endControl, end, 2.0f, RED); + // Draw spline Cubic Bezier with control points + DrawSplineSegmentBezierCubic(start, startControl, endControl, end, 2.0f, RED); DrawLineEx(start, startControl, 1.0, LIGHTGRAY); DrawLineEx(end, endControl, 1.0, LIGHTGRAY); -- cgit v1.2.3