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

Method Inverse

Common/Transforms/vtkTransform.cxx:90–101  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

88
89//------------------------------------------------------------------------------
90void vtkTransform::Inverse()
91{
92 this->Concatenation->Inverse();
93
94 // for the legacy hack in InternalUpdate
95 if (this->Matrix->GetMTime() > this->MatrixUpdateMTime)
96 {
97 this->Matrix->Invert();
98 }
99
100 this->Modified();
101}
102
103//------------------------------------------------------------------------------
104void vtkTransform::InternalDeepCopy(vtkAbstractTransform* gtrans)

Callers 5

TransformBoxOrPolygonMethod · 0.45
InverseFunction · 0.45
InverseFunction · 0.45
TestTransformFunction · 0.45

Calls 3

GetMTimeMethod · 0.45
InvertMethod · 0.45
ModifiedMethod · 0.45

Tested by 2

InverseFunction · 0.36
TestTransformFunction · 0.36