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