(rasops: &mut R, x: i16, y: i16)
| 169 | R: RasterOps, |
| 170 | { |
| 171 | fn point<R: RasterOps>(rasops: &mut R, x: i16, y: i16) -> io::Result<()> { |
| 172 | rasops.draw_pixel(PixelsXY { x, y }) |
| 173 | } |
| 174 | |
| 175 | if radius == 0 { |
| 176 | return Ok(()); |
no test coverage detected