MCPcopy Create free account
hub / github.com/Kitware/VTK / InsertNextTuple6

Method InsertNextTuple6

Common/Core/vtkDataArray.cxx:646–657  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

644
645//------------------------------------------------------------------------------
646void 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//------------------------------------------------------------------------------
660void vtkDataArray::InsertNextTuple9(double val0, double val1, double val2, double val3, double val4,

Callers

nothing calls this directly

Calls 1

InsertNextTupleMethod · 0.95

Tested by

no test coverage detected