------------------------------------------------------------------------------
| 77 | |
| 78 | //------------------------------------------------------------------------------ |
| 79 | bool vtkHyperTreeGridGeometryEntry::IsMasked( |
| 80 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree) const |
| 81 | { |
| 82 | assert("pre: not_tree" && tree); |
| 83 | if (tree && const_cast<vtkHyperTreeGrid*>(grid)->HasMask()) |
| 84 | { |
| 85 | return const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->GetValue( |
| 86 | this->GetGlobalNodeIndex(tree)) != 0; |
| 87 | } |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | bool vtkHyperTreeGridGeometryEntry::IsLeaf( |
no test coverage detected