| 4473 | //------------------------------------------------------------------------------ |
| 4474 | |
| 4475 | void PolyTreeToPaths(const PolyTree& polytree, Paths& paths) |
| 4476 | { |
| 4477 | paths.resize(0); |
| 4478 | paths.reserve(polytree.Total()); |
| 4479 | AddPolyNodeToPaths(polytree, ntAny, paths); |
| 4480 | } |
| 4481 | //------------------------------------------------------------------------------ |
| 4482 | |
| 4483 | void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths) |
nothing calls this directly
no test coverage detected