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

Method InsertTuple6

Common/Core/vtkDataArray.cxx:553–563  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

551
552//------------------------------------------------------------------------------
553void 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//------------------------------------------------------------------------------
566void vtkDataArray::InsertTuple9(vtkIdType i, double val0, double val1, double val2, double val3,

Callers

nothing calls this directly

Calls 1

InsertTupleMethod · 0.95

Tested by

no test coverage detected