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

Method draw_circle

sdl/src/console.rs:198–200  ·  view source on GitHub ↗
(&mut self, center: PixelsXY, radius: u16)

Source from the content-addressed store, hash-verified

196 }
197
198 fn draw_circle(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
199 self.call(Request::DrawCircle(center, radius))
200 }
201
202 fn draw_circle_filled(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
203 self.call(Request::DrawCircleFilled(center, radius))

Callers 2

test_sdl_console_drawFunction · 0.45

Calls 1

callMethod · 0.80

Tested by 2

test_sdl_console_drawFunction · 0.36