Sets the style of the start and end cap of the next line drawn by the stroke() operation
(&mut self, cap: LineCap)
| 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)); } |
| 70 | |
| 71 | /// Sets the winding rule used to determine if an internal subpath should be filled or empty |
| 72 | fn winding_rule(&mut self, winding_rule: WindingRule) { self.draw(Draw::WindingRule(winding_rule)); } |
no test coverage detected