ImageDrawTriangleFan method

void ImageDrawTriangleFan(
  1. Pointer<ImageC> dst,
  2. Pointer<Vector2C> points,
  3. int pointCount,
  4. ColorC color,
)

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

Implementation

void ImageDrawTriangleFan(Pointer<ImageC> dst, Pointer<Vector2C> points, int pointCount, ColorC color)
  => _ImageDrawTriangleFan(dst, points, pointCount, color);