Skip to content

Commit

Permalink
Fix DrawSplineSegmentCatmullRom
Browse files Browse the repository at this point in the history
  • Loading branch information
sol-vin committed Feb 16, 2024
1 parent e5fe6c6 commit c29856e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raylib-cr/raylib.cr
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ lib Raylib

fun draw_spline_segment_linear = DrawSplineSegmentLinear(p1 : Vector2, p2 : Vector2, thick : LibC::Float, color : Color)
fun draw_spline_segment_basis = DrawSplineSegmentBasis(p1 : Vector2, p2 : Vector2, p3 : Vector2, p4 : Vector2, thick : LibC::Float, color : Color)
fun draw_spline_segment_catmull_rom = DrawSplineCatmullRom(p1 : Vector2, p2 : Vector2, p3 : Vector2, p4 : Vector2, thick : LibC::Float, color : Color)
fun draw_spline_segment_catmull_rom = DrawSplineSegmentCatmullRom(p1 : Vector2, p2 : Vector2, p3 : Vector2, p4 : Vector2, thick : LibC::Float, color : Color)
fun draw_spline_segment_bezier_quadratic = DrawSplineSegmentBezierQuadratic(p1 : Vector2, c2 : Vector2, p3 : Vector2, thick : LibC::Float, color : Color)
fun draw_spline_segment_bezier_cubic = DrawSplineSegmentBezierCubic(p1 : Vector2, c2 : Vector2, c3 : Vector2, p4 : Vector2, thick : LibC::Float, color : Color)

Expand Down

0 comments on commit c29856e

Please sign in to comment.