| 4481 | //------------------------------------------------------------------------------ |
| 4482 | |
| 4483 | void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths) |
| 4484 | { |
| 4485 | paths.resize(0); |
| 4486 | paths.reserve(polytree.Total()); |
| 4487 | AddPolyNodeToPaths(polytree, ntClosed, paths); |
| 4488 | } |
| 4489 | //------------------------------------------------------------------------------ |
| 4490 | |
| 4491 | void OpenPathsFromPolyTree(const PolyTree& polytree, Paths& paths) |
nothing calls this directly
no test coverage detected