------------------------------------------------------------------------------
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | bool vtkHyperTreeGridGeometryUnlimitedLevelEntry::IsMasked(const vtkHyperTreeGrid* grid) const |
| 91 | { |
| 92 | if (this->Tree && const_cast<vtkHyperTreeGrid*>(grid)->HasMask()) |
| 93 | { |
| 94 | return const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->GetValue(this->GetGlobalNodeIndex()) != |
| 95 | 0; |
| 96 | } |
| 97 | return false; |
| 98 | } |
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | bool vtkHyperTreeGridGeometryUnlimitedLevelEntry::IsLeaf(const vtkHyperTreeGrid* grid) const |
no test coverage detected