------------------------------------------------------------------------------
| 137 | |
| 138 | //------------------------------------------------------------------------------ |
| 139 | void vtkDataArray::SetTuple(vtkIdType i, const float* source) |
| 140 | { |
| 141 | for (int c = 0; c < this->NumberOfComponents; ++c) |
| 142 | { |
| 143 | this->SetComponent(i, c, static_cast<double>(source[c])); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | //------------------------------------------------------------------------------ |
| 148 | void vtkDataArray::SetTuple(vtkIdType i, const double* source) |
no test coverage detected