pub fn draw_circle_filled<R>(
rasops: &mut R,
center: PixelsXY,
radius: u16,
) -> Result<()>where
R: RasterOps,
Expand description
Draws a circle via rasops
with center
and radius
.
This implements the Midpoint circle algorithm.