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

Method InternalDeepCopy

Common/Transforms/vtkMatrixToHomogeneousTransform.cxx:60–71  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

58
59//------------------------------------------------------------------------------
60void vtkMatrixToHomogeneousTransform::InternalDeepCopy(vtkAbstractTransform* gtrans)
61{
62 vtkMatrixToHomogeneousTransform* transform =
63 static_cast<vtkMatrixToHomogeneousTransform*>(gtrans);
64
65 this->SetInput(transform->Input);
66
67 if (this->InverseFlag != transform->InverseFlag)
68 {
69 this->Inverse();
70 }
71}
72
73//------------------------------------------------------------------------------
74vtkAbstractTransform* vtkMatrixToHomogeneousTransform::MakeTransform()

Callers

nothing calls this directly

Calls 2

InverseMethod · 0.95
SetInputMethod · 0.45

Tested by

no test coverage detected