(&mut self, xy: PixelsXY, text: &str)
| 450 | } |
| 451 | |
| 452 | fn write_text(&mut self, xy: PixelsXY, text: &str) -> io::Result<()> { |
| 453 | self.without_sync(|self2| drawing::draw_text(self2, self2.font, xy, text)) |
| 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)) |