Closes the current path (adds a line to the last move point)
(&mut self)
| 49 | |
| 50 | /// Closes the current path (adds a line to the last move point) |
| 51 | fn close_path(&mut self) { self.draw(Draw::Path(PathOp::ClosePath)); } |
| 52 | |
| 53 | /// Fills the currently defined path |
| 54 | fn fill(&mut self) { self.draw(Draw::Fill); } |
no test coverage detected