DrawTriangleFan method
Draw a triangle fan defined by points (first vertex is the center)
Implementation
@override
void DrawTriangleFan(
StructPointer<Vector2D> points,
int pointCount,
ColorD color,
) => _ffi.DrawTriangleFan(
points.asNativePointer(),
pointCount,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref
);