------------------------------------------------------------------------------
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | bool vtkHyperTreeGridEntry::IsMasked(const vtkHyperTreeGrid* grid, const vtkHyperTree* tree) const |
| 67 | { |
| 68 | if (tree && const_cast<vtkHyperTreeGrid*>(grid)->HasMask()) |
| 69 | { |
| 70 | return const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->GetValue( |
| 71 | this->GetGlobalNodeIndex(tree)) != 0; |
| 72 | } |
| 73 | return false; |
| 74 | } |
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | bool vtkHyperTreeGridEntry::IsLeaf( |