------------------------------------------------------------------------------ Return the inverse of the current transformation matrix.
| 516 | //------------------------------------------------------------------------------ |
| 517 | // Return the inverse of the current transformation matrix. |
| 518 | void vtkTransform::GetInverse(vtkMatrix4x4* inverse) |
| 519 | { |
| 520 | vtkMatrix4x4::Invert(this->GetMatrix(), inverse); |
| 521 | } |
| 522 | |
| 523 | //------------------------------------------------------------------------------ |
| 524 | // Obtain the transpose of the current transformation matrix. |