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