----------------------------------------------------------------------------------------------
| 87 | |
| 88 | //---------------------------------------------------------------------------------------------- |
| 89 | bool vtkHyperTreeGridGeometryImpl::IsMaskedOrGhost(vtkIdType globalNodeId) const |
| 90 | { |
| 91 | // This method determines if the globalNodeId offset cell is masked or ghosted. |
| 92 | return ((this->InMaskArray && this->InMaskArray->GetTuple1(globalNodeId)) |
| 93 | ? true |
| 94 | : (this->InGhostArray && this->InGhostArray->GetTuple1(globalNodeId))); |
| 95 | } |
| 96 | |
| 97 | //---------------------------------------------------------------------------------------------- |
| 98 | bool vtkHyperTreeGridGeometryImpl::ProbeForCellInterface(vtkIdType cellId, bool invert) |
no test coverage detected