------------------------------------------------------------------------------
| 216 | |
| 217 | //------------------------------------------------------------------------------ |
| 218 | void vtkTable::SetRow(vtkIdType row, vtkVariantArray* values) |
| 219 | { |
| 220 | vtkIdType ncol = this->GetNumberOfColumns(); |
| 221 | if (values->GetNumberOfTuples() != ncol) |
| 222 | { |
| 223 | vtkErrorMacro(<< "Incorrect number of tuples in SetRow"); |
| 224 | } |
| 225 | for (vtkIdType i = 0; i < ncol; i++) |
| 226 | { |
| 227 | this->SetValue(row, i, values->GetValue(i)); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | //------------------------------------------------------------------------------ |
| 232 | void vtkTable::MoveRowData(vtkIdType first, vtkIdType last, vtkIdType delta) |
no test coverage detected