------------------------------------------------------------------------------
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | bool vtkHyperTreeGridGeometryEntry::IsLeaf( |
| 93 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree, unsigned int level) const |
| 94 | { |
| 95 | assert("pre: not_tree" && tree); |
| 96 | if (level == const_cast<vtkHyperTreeGrid*>(grid)->GetDepthLimiter()) |
| 97 | { |
| 98 | return true; |
| 99 | } |
| 100 | return tree->IsLeaf(this->Index); |
| 101 | } |
| 102 | |
| 103 | //------------------------------------------------------------------------------ |
| 104 | void vtkHyperTreeGridGeometryEntry::SubdivideLeaf( |
no test coverage detected