ImageDrawCircle method
void
ImageDrawCircle()
override
Draw a filled circle within an image
Implementation
@override
void ImageDrawCircle(
StructPointer<ImageD> dst,
int centerX,
int centerY,
int radius,
ColorD color,
) => _ffi.ImageDrawCircle(
dst.asNativePointer(),
centerX,
centerY,
radius,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);