MCPcopy Index your code
hub / github.com/endbasic/endbasic / draw_circle_filled

Method draw_circle_filled

std/src/console/graphics.rs:708–712  ·  view source on GitHub ↗
(&mut self, center: PixelsXY, radius: u16)

Source from the content-addressed store, hash-verified

706 }
707
708 fn draw_circle_filled(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
709 self.raster_ops.set_draw_color(self.fg_color);
710 self.raster_ops.draw_circle_filled(center, radius)?;
711 self.present_canvas()
712 }
713
714 fn draw_line(&mut self, x1y1: PixelsXY, x2y2: PixelsXY) -> io::Result<()> {
715 self.raster_ops.set_draw_color(self.fg_color);

Callers

nothing calls this directly

Calls 2

set_draw_colorMethod · 0.45
present_canvasMethod · 0.45

Tested by

no test coverage detected