static
| 92 | |
| 93 | // static |
| 94 | HierarchyLinker::Tree4d HierarchyLinker::MakeTree4d(Node::Ptrs const & nodes) |
| 95 | { |
| 96 | Tree4d tree; |
| 97 | for (auto const & n : nodes) |
| 98 | tree.Add(n, n->GetData().GetLimitRect()); |
| 99 | return tree; |
| 100 | } |
| 101 | |
| 102 | HierarchyLinker::Node::Ptr HierarchyLinker::FindPlaceParent(HierarchyPlace const & place) |
| 103 | { |
nothing calls this directly
no test coverage detected