------------------------------------------------------------------------------
| 72 | |
| 73 | //------------------------------------------------------------------------------ |
| 74 | bool vtkHyperTreeGridGeometryLevelEntry::IsMasked(const vtkHyperTreeGrid* grid) const |
| 75 | { |
| 76 | if (this->Tree && const_cast<vtkHyperTreeGrid*>(grid)->HasMask()) |
| 77 | { |
| 78 | return const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->GetValue(this->GetGlobalNodeIndex()) != |
| 79 | 0; |
| 80 | } |
| 81 | return false; |
| 82 | } |
| 83 | |
| 84 | //------------------------------------------------------------------------------ |
| 85 | bool vtkHyperTreeGridGeometryLevelEntry::IsLeaf(const vtkHyperTreeGrid* grid) const |
no test coverage detected