DrawSplineSegmentCatmullRom method

void DrawSplineSegmentCatmullRom(
  1. Vector2C p1,
  2. Vector2C p2,
  3. Vector2C p3,
  4. Vector2C p4,
  5. double thick,
  6. ColorC color,
)

Draw spline segment: Catmull-Rom, 4 points

Implementation

void DrawSplineSegmentCatmullRom(Vector2C p1, Vector2C p2, Vector2C p3, Vector2C p4, double thick, ColorC color)
  => _DrawSplineSegmentCatmullRom(p1, p2, p3, p4, thick, color);