------------------------------------------------------------------------------
| 627 | } |
| 628 | //------------------------------------------------------------------------------ |
| 629 | void vtkDataArray::InsertNextTuple4(double val0, double val1, double val2, double val3) |
| 630 | { |
| 631 | double tuple[4]; |
| 632 | int numComp = this->GetNumberOfComponents(); |
| 633 | if (numComp != 4) |
| 634 | { |
| 635 | vtkErrorMacro( |
| 636 | "The number of components do not match the number requested: " << numComp << " != 4"); |
| 637 | } |
| 638 | tuple[0] = val0; |
| 639 | tuple[1] = val1; |
| 640 | tuple[2] = val2; |
| 641 | tuple[3] = val3; |
| 642 | this->InsertNextTuple(tuple); |
| 643 | } |
| 644 | |
| 645 | //------------------------------------------------------------------------------ |
| 646 | void vtkDataArray::InsertNextTuple6( |