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

Method InsertTuple

Common/DataModel/vtkFieldData.cxx:1076–1082  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Insert the tuple value at the ith location. Range checking is performed and memory allocates as necessary.

Source from the content-addressed store, hash-verified

1074// Insert the tuple value at the ith location. Range checking is
1075// performed and memory allocates as necessary.
1076void vtkFieldData::InsertTuple(vtkIdType i, vtkIdType j, vtkFieldData* source)
1077{
1078 for (int k = 0; k < this->GetNumberOfArrays(); ++k)
1079 {
1080 this->Data[k]->InsertTuple(i, j, source->GetAbstractArray(k));
1081 }
1082}
1083
1084//------------------------------------------------------------------------------
1085// Insert the tuple value at the end of the tuple matrix. Range

Callers 14

InsertNextTupleMethod · 0.95
StableClipMethod · 0.45
InterpolatePointMethod · 0.45
InterpolateEdgeMethod · 0.45
InterpolateTimeMethod · 0.45
CopyTupleMethod · 0.45
SlidingNormalsOnLineFunction · 0.45
InterpolatePointMethod · 0.45
NullDataMethod · 0.45
GetFieldMethod · 0.45
ContourMethod · 0.45
ClipMethod · 0.45

Calls 2

GetAbstractArrayMethod · 0.80
GetNumberOfArraysMethod · 0.45

Tested by

no test coverage detected