------------------------------------------------------------------------------ Set the number of tuples for each data array in the field.
| 1051 | //------------------------------------------------------------------------------ |
| 1052 | // Set the number of tuples for each data array in the field. |
| 1053 | void vtkFieldData::SetNumberOfTuples(vtkIdType number) |
| 1054 | { |
| 1055 | for (int i = 0; i < this->GetNumberOfArrays(); ++i) |
| 1056 | { |
| 1057 | this->Data[i]->SetNumberOfTuples(number); |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | //------------------------------------------------------------------------------ |
| 1062 | // Set the jth tuple in source field data at the ith location. |