------------------------------------------------------------------------------
| 68 | |
| 69 | //------------------------------------------------------------------------------ |
| 70 | void vtkHyperTreeGridGeometryEntry::SetMask( |
| 71 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree, bool value) |
| 72 | { |
| 73 | assert("pre: not_tree" && tree); |
| 74 | const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->InsertTuple1( |
| 75 | this->GetGlobalNodeIndex(tree), value); |
| 76 | } |
| 77 | |
| 78 | //------------------------------------------------------------------------------ |
| 79 | bool vtkHyperTreeGridGeometryEntry::IsMasked( |
nothing calls this directly
no test coverage detected