------------------------------------------------------------------------------ Return the ith array in the field. A nullptr is returned if the index i is out of range.
| 485 | // Return the ith array in the field. A nullptr is returned if the index i is out |
| 486 | // of range. |
| 487 | vtkDataArray* vtkFieldData::GetArray(int i) |
| 488 | { |
| 489 | return vtkArrayDownCast<vtkDataArray>(this->GetAbstractArray(i)); |
| 490 | } |
| 491 | |
| 492 | //------------------------------------------------------------------------------ |
| 493 | // Return the ith array in the field. A nullptr is returned if the index i is out |
nothing calls this directly
no test coverage detected