------------------------------------------------------------------------------
| 93 | |
| 94 | //------------------------------------------------------------------------------ |
| 95 | void vtkHyperTreeGridGeometryUnlimitedEntry::SetMask( |
| 96 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree, bool value) |
| 97 | { |
| 98 | assert("pre: not_tree" && tree); |
| 99 | const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->InsertTuple1( |
| 100 | this->GetGlobalNodeIndex(tree), value); |
| 101 | } |
| 102 | |
| 103 | //------------------------------------------------------------------------------ |
| 104 | bool vtkHyperTreeGridGeometryUnlimitedEntry::IsMasked( |
nothing calls this directly
no test coverage detected