------------------------------------------------------------------------------
| 102 | |
| 103 | //------------------------------------------------------------------------------ |
| 104 | bool vtkHyperTreeGridGeometryUnlimitedEntry::IsMasked( |
| 105 | const vtkHyperTreeGrid* grid, const vtkHyperTree* tree) const |
| 106 | { |
| 107 | assert("pre: not_tree" && tree); |
| 108 | if (tree && const_cast<vtkHyperTreeGrid*>(grid)->HasMask()) |
| 109 | { |
| 110 | return const_cast<vtkHyperTreeGrid*>(grid)->GetMask()->GetValue( |
| 111 | this->GetGlobalNodeIndex(tree)) != 0; |
| 112 | } |
| 113 | return false; |
| 114 | } |
| 115 | |
| 116 | //------------------------------------------------------------------------------ |
| 117 | bool vtkHyperTreeGridGeometryUnlimitedEntry::IsLeaf( |
nothing calls this directly
no test coverage detected