ImageDrawCircle method

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,
) {
  return _ImageDrawCircle(dst, centerX, centerY, radius, color);
}