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

Method draw_circle_filled

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

Source from the content-addressed store, hash-verified

200 }
201
202 fn draw_circle_filled(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
203 self.call(Request::DrawCircleFilled(center, radius))
204 }
205
206 fn draw_line(&mut self, x1y1: PixelsXY, x2y2: PixelsXY) -> io::Result<()> {
207 self.call(Request::DrawLine(x1y1, x2y2))

Callers 2

test_sdl_console_drawFunction · 0.45

Calls 1

callMethod · 0.80

Tested by 2

test_sdl_console_drawFunction · 0.36