DrawSplineCatmullRom method
Implementation
@override
void DrawSplineCatmullRom(
List<Vector2D> points,
num thick,
ColorD color,
) => run(
() => RaylibDebugLabels.DrawSplineCatmullRom(points, thick, color),
() => rl.Core.DrawSplineCatmullRom(
rl.Temp.Vector2$.Array(points),
points.length,
thick.toDouble(),
rl.Temp.Color$.Ref1(color).ref,
),
);