Sets the line width for the next stroke() operation in device pixels
(&mut self, width: f32)
| 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)); } |
| 64 | |
| 65 | /// Sets the line join style for the next stroke() operation |
| 66 | fn line_join(&mut self, join: LineJoin) { self.draw(Draw::LineJoin(join)); } |
no test coverage detected