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

Method GetArraySelection

Filters/Reduction/vtkToImplicitArrayFilter.cxx:113–121  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

111
112//-------------------------------------------------------------------------
113vtkDataArraySelection* vtkToImplicitArrayFilter::GetArraySelection(int association)
114{
115 if (association < 0 || association >= vtkDataObject::NUMBER_OF_ASSOCIATIONS)
116 {
117 vtkErrorMacro("Attempt to get an array selection that is out of bounds");
118 return nullptr;
119 }
120 return this->Internals->ArraySelections[association];
121}
122
123//-------------------------------------------------------------------------
124vtkDataArraySelection* vtkToImplicitArrayFilter::GetPointDataArraySelection()

Calls

no outgoing calls

Tested by

no test coverage detected