------------------------------------------------------------------------------
| 83 | |
| 84 | //------------------------------------------------------------------------------ |
| 85 | void vtkHyperTreeGridLevelEntry::SetMask(const vtkHyperTreeGrid* grid, bool value) |
| 86 | { |
| 87 | assert("pre: not_tree" && this->Tree); |
| 88 | const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->InsertTuple1(this->GetGlobalNodeIndex(), value); |
| 89 | } |
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | bool vtkHyperTreeGridLevelEntry::IsMasked(const vtkHyperTreeGrid* grid) const |
nothing calls this directly
no test coverage detected