DrawSplineBasis method
Draw spline: B-Spline, minimum 4 points
Implementation
void DrawSplineBasis(
List<Vector2D> points,
num thick,
ColorD color,
) => run(
() => _debugLabels.DrawSplineBasis(points, thick, color),
() => _flat.DrawSplineBasis(
$.Vector2$.ArrayStruct(points),
points.length,
thick.toDouble(),
color,
),
);