------------------------------------------------------------------------------
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | bool vtkHyperTreeGridEntry::IsLeaf( |
| 78 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree, unsigned int level) const |
| 79 | { |
| 80 | assert("pre: not_tree" && tree); |
| 81 | if (level == const_cast<vtkHyperTreeGrid*>(grid)->GetDepthLimiter()) |
| 82 | { |
| 83 | return true; |
| 84 | } |
| 85 | return tree->IsLeaf(this->Index); |
| 86 | } |
| 87 | |
| 88 | //------------------------------------------------------------------------------ |
| 89 | void vtkHyperTreeGridEntry::SubdivideLeaf( |
no test coverage detected