------------------------------------------------------------------------------
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 | void vtkTransform::Identity() |
| 77 | { |
| 78 | this->Concatenation->Identity(); |
| 79 | |
| 80 | // support for the legacy hack in InternalUpdate |
| 81 | if (this->Matrix->GetMTime() > this->MatrixUpdateMTime) |
| 82 | { |
| 83 | this->Matrix->Identity(); |
| 84 | } |
| 85 | |
| 86 | this->Modified(); |
| 87 | } |
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | void vtkTransform::Inverse() |