DrawSplineCatmullRom method

void DrawSplineCatmullRom(
  1. Pointer<Vector2C> points,
  2. int pointCount,
  3. double thick,
  4. ColorC color,
)

Draw spline: Catmull-Rom, minimum 4 points

Implementation

void DrawSplineCatmullRom(Pointer<Vector2C> points, int pointCount, double thick, ColorC color)
  => _DrawSplineCatmullRom(points, pointCount, thick, color);