MCPcopy Create free account
hub / github.com/Kitware/VTK / IsMaskedOrGhost

Method IsMaskedOrGhost

Filters/HyperTree/vtkHyperTreeGridGeometryImpl.cxx:89–95  ·  view source on GitHub ↗

----------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

87
88//----------------------------------------------------------------------------------------------
89bool 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//----------------------------------------------------------------------------------------------
98bool vtkHyperTreeGridGeometryImpl::ProbeForCellInterface(vtkIdType cellId, bool invert)

Callers 2

Calls 1

GetTuple1Method · 0.80

Tested by

no test coverage detected