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