------------------------------------------------------------------------------
| 55 | |
| 56 | //------------------------------------------------------------------------------ |
| 57 | void vtkHyperTreeGridEntry::SetMask( |
| 58 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree, bool value) |
| 59 | { |
| 60 | assert("pre: not_tree" && tree); |
| 61 | const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->InsertTuple1( |
| 62 | this->GetGlobalNodeIndex(tree), value); |
| 63 | } |
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | bool vtkHyperTreeGridEntry::IsMasked(const vtkHyperTreeGrid* grid, const vtkHyperTree* tree) const |
nothing calls this directly
no test coverage detected