ImageDrawTriangleFan abstract method

void ImageDrawTriangleFan(
  1. StructPointer<ImageD> dst,
  2. StructPointer<Vector2D> points,
  3. int pointCount,
  4. ColorD color,
)

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

Implementation

void ImageDrawTriangleFan(
  StructPointer<ImageD> dst,
  StructPointer<Vector2D> points,
  int pointCount,
  ColorD color,
);