------------------------------------------------------------------------------
| 551 | |
| 552 | //------------------------------------------------------------------------------ |
| 553 | void vtkDataArray::InsertTuple6( |
| 554 | vtkIdType i, double val0, double val1, double val2, double val3, double val4, double val5) |
| 555 | { |
| 556 | if (this->NumberOfComponents != 6) |
| 557 | { |
| 558 | vtkErrorMacro("The number of components do not match the number requested: " |
| 559 | << this->NumberOfComponents << " != 6"); |
| 560 | } |
| 561 | double tuple[6] = { val0, val1, val2, val3, val4, val5 }; |
| 562 | this->InsertTuple(i, tuple); |
| 563 | } |
| 564 | |
| 565 | //------------------------------------------------------------------------------ |
| 566 | void vtkDataArray::InsertTuple9(vtkIdType i, double val0, double val1, double val2, double val3, |
nothing calls this directly
no test coverage detected