| 4573 | //------------------------------------------------------------------------------ |
| 4574 | |
| 4575 | void PolyTreeToPaths(const PolyTree& polytree, Paths& paths) |
| 4576 | { |
| 4577 | paths.resize(0); |
| 4578 | paths.reserve(polytree.Total()); |
| 4579 | AddPolyNodeToPaths(polytree, ntAny, paths); |
| 4580 | } |
| 4581 | //------------------------------------------------------------------------------ |
| 4582 | |
| 4583 | void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths) |
nothing calls this directly
no test coverage detected