------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkHyperTreeGridGeometryLevelEntry::SetMask(const vtkHyperTreeGrid* grid, bool value) |
| 68 | { |
| 69 | assert("pre: not_tree" && this->Tree); |
| 70 | const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->InsertTuple1(this->GetGlobalNodeIndex(), value); |
| 71 | } |
| 72 | |
| 73 | //------------------------------------------------------------------------------ |
| 74 | bool vtkHyperTreeGridGeometryLevelEntry::IsMasked(const vtkHyperTreeGrid* grid) const |
nothing calls this directly
no test coverage detected