| 4581 | //------------------------------------------------------------------------------ |
| 4582 | |
| 4583 | void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths) |
| 4584 | { |
| 4585 | paths.resize(0); |
| 4586 | paths.reserve(polytree.Total()); |
| 4587 | AddPolyNodeToPaths(polytree, ntClosed, paths); |
| 4588 | } |
| 4589 | //------------------------------------------------------------------------------ |
| 4590 | |
| 4591 | void OpenPathsFromPolyTree(PolyTree& polytree, Paths& paths) |
nothing calls this directly
no test coverage detected