------------------------------------------------------------------------------
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | void 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 | //------------------------------------------------------------------------------ |
| 104 | void vtkTransform::InternalDeepCopy(vtkAbstractTransform* gtrans) |