ImageDrawCircle function

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

Implementation

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