------------------------------------------------------------------------------ Insert the tuple value at the end of the tuple matrix. Range checking is performed and memory is allocated as necessary.
| 1085 | // Insert the tuple value at the end of the tuple matrix. Range |
| 1086 | // checking is performed and memory is allocated as necessary. |
| 1087 | vtkIdType vtkFieldData::InsertNextTuple(vtkIdType j, vtkFieldData* source) |
| 1088 | { |
| 1089 | vtkIdType id = this->GetNumberOfTuples(); |
| 1090 | this->InsertTuple(id, j, source); |
| 1091 | return id; |
| 1092 | } |
| 1093 | VTK_ABI_NAMESPACE_END |