------------------------------------------------------------------------------
| 644 | |
| 645 | //------------------------------------------------------------------------------ |
| 646 | void vtkDataArray::InsertNextTuple6( |
| 647 | double val0, double val1, double val2, double val3, double val4, double val5) |
| 648 | { |
| 649 | if (this->NumberOfComponents != 6) |
| 650 | { |
| 651 | vtkErrorMacro("The number of components do not match the number requested: " |
| 652 | << this->NumberOfComponents << " != 6"); |
| 653 | } |
| 654 | |
| 655 | double tuple[6] = { val0, val1, val2, val3, val4, val5 }; |
| 656 | this->InsertNextTuple(tuple); |
| 657 | } |
| 658 | |
| 659 | //------------------------------------------------------------------------------ |
| 660 | void vtkDataArray::InsertNextTuple9(double val0, double val1, double val2, double val3, double val4, |
nothing calls this directly
no test coverage detected