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

Method InternalDeepCopy

Common/DataModel/vtkIterativeClosestPointTransform.cxx:226–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224//------------------------------------------------------------------------------
225
226void vtkIterativeClosestPointTransform::InternalDeepCopy(vtkAbstractTransform* transform)
227{
228 vtkIterativeClosestPointTransform* t = (vtkIterativeClosestPointTransform*)transform;
229
230 this->SetSource(t->GetSource());
231 this->SetTarget(t->GetTarget());
232 this->SetLocator(t->GetLocator());
233 this->SetMaximumNumberOfIterations(t->GetMaximumNumberOfIterations());
234 this->SetCheckMeanDistance(t->GetCheckMeanDistance());
235 this->SetMeanDistanceMode(t->GetMeanDistanceMode());
236 this->SetMaximumMeanDistance(t->GetMaximumMeanDistance());
237 this->SetMaximumNumberOfLandmarks(t->GetMaximumNumberOfLandmarks());
238
239 this->Modified();
240}
241
242//------------------------------------------------------------------------------
243

Callers

nothing calls this directly

Calls 7

SetSourceMethod · 0.95
SetTargetMethod · 0.95
SetLocatorMethod · 0.95
GetTargetMethod · 0.80
GetSourceMethod · 0.45
GetLocatorMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected