DrawTriangleFan method

void DrawTriangleFan(
  1. Pointer<Vector2C> points,
  2. int pointCount,
  3. ColorC color
)

Draw a triangle fan defined by points (first vertex is the center)

Implementation

void DrawTriangleFan(Pointer<Vector2C> points, int pointCount, ColorC color)
  => _DrawTriangleFan(points, pointCount, color);