------------------------------------------------------------------------------
| 534 | } |
| 535 | //------------------------------------------------------------------------------ |
| 536 | void vtkDataArray::InsertTuple4(vtkIdType i, double val0, double val1, double val2, double val3) |
| 537 | { |
| 538 | double tuple[4]; |
| 539 | int numComp = this->GetNumberOfComponents(); |
| 540 | if (numComp != 4) |
| 541 | { |
| 542 | vtkErrorMacro( |
| 543 | "The number of components do not match the number requested: " << numComp << " != 4"); |
| 544 | } |
| 545 | tuple[0] = val0; |
| 546 | tuple[1] = val1; |
| 547 | tuple[2] = val2; |
| 548 | tuple[3] = val3; |
| 549 | this->InsertTuple(i, tuple); |
| 550 | } |
| 551 | |
| 552 | //------------------------------------------------------------------------------ |
| 553 | void vtkDataArray::InsertTuple6( |
no test coverage detected