------------------------------------------------------------------------------
| 247 | |
| 248 | //------------------------------------------------------------------------------ |
| 249 | void vtkInteractorStyleFlight::OnLeftButtonUp() |
| 250 | { |
| 251 | switch (this->State) |
| 252 | { |
| 253 | case VTKIS_FORWARDFLY: |
| 254 | this->EndForwardFly(); |
| 255 | break; |
| 256 | default: |
| 257 | break; |
| 258 | } |
| 259 | if (this->Interactor) |
| 260 | { |
| 261 | this->ReleaseFocus(); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | //------------------------------------------------------------------------------ |
| 266 | void vtkInteractorStyleFlight::OnMiddleButtonDown() {} |
nothing calls this directly
no test coverage detected