Sets the line join style for the next stroke() operation
(&mut self, join: LineJoin)
| 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)); } |
| 67 | |
| 68 | /// Sets the style of the start and end cap of the next line drawn by the stroke() operation |
| 69 | fn line_cap(&mut self, cap: LineCap) { self.draw(Draw::LineCap(cap)); } |
no test coverage detected