pub fn draw_filled_circle_mut<C>(
canvas: &mut C,
center: (i32, i32),
radius: i32,
color: C::Pixel,
)where
C: Canvas,
Expand description
Draws a circle and its contents on an image in place.
Draws as much of a circle and its contents as lies inside the image bounds.