Sets the winding rule used to determine if an internal subpath should be filled or empty
(&mut self, winding_rule: WindingRule)
| 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)); } |
| 73 | |
| 74 | /// Starts defining a new dash pattern |
| 75 | fn new_dash_pattern(&mut self) { self.draw(Draw::NewDashPattern); } |
no test coverage detected