------------------------------------------------------------------------------
| 587 | |
| 588 | //------------------------------------------------------------------------------ |
| 589 | void vtkDataArray::InsertNextTuple1(double value) |
| 590 | { |
| 591 | int numComp = this->GetNumberOfComponents(); |
| 592 | if (numComp != 1) |
| 593 | { |
| 594 | vtkErrorMacro( |
| 595 | "The number of components do not match the number requested: " << numComp << " != 1"); |
| 596 | } |
| 597 | this->InsertNextTuple(&value); |
| 598 | } |
| 599 | //------------------------------------------------------------------------------ |
| 600 | void vtkDataArray::InsertNextTuple2(double val0, double val1) |
| 601 | { |