ImageDrawCircleV method

void ImageDrawCircleV(
  1. Pointer<ImageC> dst,
  2. Vector2C center,
  3. int radius,
  4. ColorC color,
)

Draw a filled circle within an image (Vector version)

Implementation

void ImageDrawCircleV(Pointer<ImageC> dst, Vector2C center, int radius, ColorC color)
  => _ImageDrawCircleV(dst, center, radius, color);