------------------------------------------------------------------------------ Copy a tuple of data from one data array to another. This method (and following ones) assume that the fromData and toData objects are of the same type, and have the same number of components. This is true if you invoke CopyAllocate() or InterpolateAllocate().
| 1156 | // same type, and have the same number of components. This is true if you |
| 1157 | // invoke CopyAllocate() or InterpolateAllocate(). |
| 1158 | void vtkDataSetAttributes::CopyTuple( |
| 1159 | vtkAbstractArray* fromData, vtkAbstractArray* toData, vtkIdType fromId, vtkIdType toId) |
| 1160 | { |
| 1161 | toData->InsertTuple(toId, fromId, fromData); |
| 1162 | } |
| 1163 | |
| 1164 | //------------------------------------------------------------------------------ |
| 1165 | void vtkDataSetAttributes::CopyTuples( |
no test coverage detected