DrawSplineBasis method

void DrawSplineBasis(
  1. List<Vector2D> points,
  2. num thick,
  3. ColorD color
)

Implementation

void DrawSplineBasis(
  List<Vector2D> points,
  num thick,
  ColorD color,
) => run(
  () => 'DrawSplineBasis(points: ${points.length}, $thick, $color)',
  () => rl.Core.DrawSplineBasis(
    _refListVector2(points),
    points.length,
    thick.toDouble(),
    _refColor1(color).ref,
  ),
);