ImageDrawCircle method

  1. @override
void ImageDrawCircle(
  1. StructPointer<ImageD> dst,
  2. int centerX,
  3. int centerY,
  4. int radius,
  5. ColorD color,
)
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,
);