------------------------------------------------------------------------------ Return the inverse of the current transformation matrix.
| 150 | //------------------------------------------------------------------------------ |
| 151 | // Return the inverse of the current transformation matrix. |
| 152 | void vtkTransform2D::GetInverse(vtkMatrix3x3* inverse) |
| 153 | { |
| 154 | vtkMatrix3x3::Invert(this->GetMatrix(), inverse); |
| 155 | } |
| 156 | |
| 157 | //------------------------------------------------------------------------------ |
| 158 | // Obtain the transpose of the current transformation matrix. |