(&mut self, center: PixelsXY, radius: u16)
| 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)) |
| 462 | } |
| 463 | |
| 464 | fn draw_line(&mut self, x1y1: PixelsXY, x2y2: PixelsXY) -> io::Result<()> { |
| 465 | self.without_sync(|self2| drawing::draw_line(self2, x1y1, x2y2)) |