------------------------------------------------------------------------------
| 41 | |
| 42 | //------------------------------------------------------------------------------ |
| 43 | void vtkMatrixToLinearTransform::InternalUpdate() |
| 44 | { |
| 45 | if (this->Input) |
| 46 | { |
| 47 | this->Matrix->DeepCopy(this->Input); |
| 48 | if (this->InverseFlag) |
| 49 | { |
| 50 | this->Matrix->Invert(); |
| 51 | } |
| 52 | } |
| 53 | else |
| 54 | { |
| 55 | this->Matrix->Identity(); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | //------------------------------------------------------------------------------ |
| 60 | void vtkMatrixToLinearTransform::InternalDeepCopy(vtkAbstractTransform* gtrans) |