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

Method InsertNextTuple4

Common/Core/vtkDataArray.cxx:629–643  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

627}
628//------------------------------------------------------------------------------
629void vtkDataArray::InsertNextTuple4(double val0, double val1, double val2, double val3)
630{
631 double tuple[4];
632 int numComp = this->GetNumberOfComponents();
633 if (numComp != 4)
634 {
635 vtkErrorMacro(
636 "The number of components do not match the number requested: " << numComp << " != 4");
637 }
638 tuple[0] = val0;
639 tuple[1] = val1;
640 tuple[2] = val2;
641 tuple[3] = val3;
642 this->InsertNextTuple(tuple);
643}
644
645//------------------------------------------------------------------------------
646void vtkDataArray::InsertNextTuple6(

Callers 15

setupTextActor3DFunction · 0.80
setupTextActorFunction · 0.80
setupTextMapperFunction · 0.80
WriteVTPMethod · 0.80
mainFunction · 0.80
doArrayTestFunction · 0.80
setupFlagpoleTextFunction · 0.80
setupTextActor3DFunction · 0.80
setupTextMapperFunction · 0.80
setupTextActorFunction · 0.80

Calls 2

InsertNextTupleMethod · 0.95
GetNumberOfComponentsMethod · 0.45

Tested by 15

setupTextActor3DFunction · 0.64
setupTextActorFunction · 0.64
setupTextMapperFunction · 0.64
setupFlagpoleTextFunction · 0.64
setupTextActor3DFunction · 0.64
setupTextMapperFunction · 0.64
setupTextActorFunction · 0.64
setupTextActorFunction · 0.64
setupTextActorFunction · 0.64
setupTextActor3DFunction · 0.64