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

Method draw_circle

std/src/gfx/lcd/buffered/mod.rs:456–458  ·  view source on GitHub ↗
(&mut self, center: PixelsXY, radius: u16)

Source from the content-addressed store, hash-verified

454 }
455
456 fn draw_circle(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
457 self.without_sync(|self2| drawing::draw_circle(self2, center, radius))
458 }
459
460 fn draw_circle_filled(&mut self, center: PixelsXY, radius: u16) -> io::Result<()> {
461 self.without_sync(|self2| drawing::draw_circle_filled(self2, center, radius))

Callers 4

execMethod · 0.45
test_draw_circle_syncFunction · 0.45
test_draw_circle_no_syncFunction · 0.45
test_draw_circle_clipFunction · 0.45

Calls 2

draw_circleFunction · 0.85
without_syncMethod · 0.80

Tested by 3

test_draw_circle_syncFunction · 0.36
test_draw_circle_no_syncFunction · 0.36
test_draw_circle_clipFunction · 0.36