------------------------------------------------------------------------------
| 653 | |
| 654 | //------------------------------------------------------------------------------ |
| 655 | void vtkInteractorStyleFlight::GetLRVector(double vector[3], vtkCamera* cam) |
| 656 | { |
| 657 | vtkMatrix4x4* vtm; |
| 658 | vtm = cam->GetViewTransformMatrix(); |
| 659 | vector[0] = vtm->GetElement(0, 0); |
| 660 | vector[1] = vtm->GetElement(0, 1); |
| 661 | vector[2] = vtm->GetElement(0, 2); |
| 662 | } |
| 663 | |
| 664 | //------------------------------------------------------------------------------ |
| 665 | // Perform the motion |
no test coverage detected