Draws a line around the currently defined path
(&mut self)
| 55 | |
| 56 | /// Draws a line around the currently defined path |
| 57 | fn stroke(&mut self) { self.draw(Draw::Stroke); } |
| 58 | |
| 59 | /// Sets the line width for the next stroke() operation |
| 60 | fn line_width(&mut self, width: f32) { self.draw(Draw::LineWidth(width)); } |