-------------------------------------------------------------------------
| 111 | |
| 112 | //------------------------------------------------------------------------- |
| 113 | vtkDataArraySelection* 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 | //------------------------------------------------------------------------- |
| 124 | vtkDataArraySelection* vtkToImplicitArrayFilter::GetPointDataArraySelection() |
no outgoing calls
no test coverage detected