------------------------------------------------------------------------------ Set the jth tuple in source field data at the ith location. Set operations means that no range checking is performed, so they're faster.
| 1063 | // Set operations |
| 1064 | // means that no range checking is performed, so they're faster. |
| 1065 | void vtkFieldData::SetTuple(vtkIdType i, vtkIdType j, vtkFieldData* source) |
| 1066 | { |
| 1067 | for (int k = 0; k < this->GetNumberOfArrays(); ++k) |
| 1068 | { |
| 1069 | this->Data[k]->SetTuple(i, j, source->Data[k]); |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | //------------------------------------------------------------------------------ |
| 1074 | // Insert the tuple value at the ith location. Range checking is |
no test coverage detected