ImageDrawCircle method

void ImageDrawCircle(
  1. Pointer<ImageC> dst,
  2. int centerX,
  3. int centerY,
  4. int radius,
  5. ColorC color,
)

Draw a filled circle within an image

Implementation

void ImageDrawCircle(Pointer<ImageC> dst, int centerX, int centerY, int radius, ColorC color)
  => _ImageDrawCircle(dst, centerX, centerY, radius, color);