Sets the line width for the next stroke() operation
(&mut self, width: f32)
| 58 | |
| 59 | /// Sets the line width for the next stroke() operation |
| 60 | fn line_width(&mut self, width: f32) { self.draw(Draw::LineWidth(width)); } |
| 61 | |
| 62 | /// Sets the line width for the next stroke() operation in device pixels |
| 63 | fn line_width_pixels(&mut self, width: f32) { self.draw(Draw::LineWidthPixels(width)); } |
no test coverage detected