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