------------------------------------------------------------------------------
| 126 | |
| 127 | //------------------------------------------------------------------------------ |
| 128 | bool vtkHyperTreeGridGeometryUnlimitedEntry::IsRealLeaf(const vtkHyperTree* tree) const |
| 129 | { |
| 130 | assert("pre: not_tree" && tree); |
| 131 | assert("pre: not_virtual" && !this->IsVirtualLeaf(tree)); |
| 132 | return tree->IsLeaf(this->Index); |
| 133 | } |
| 134 | |
| 135 | //------------------------------------------------------------------------------ |
| 136 | bool vtkHyperTreeGridGeometryUnlimitedEntry::IsVirtualLeaf( |
no test coverage detected