(&mut self, center: PixelsXY, radius: u16)
| 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)) |