------------------------------------------------------------------------------
| 852 | |
| 853 | //------------------------------------------------------------------------------ |
| 854 | void vtkImagePlaneWidget::StopCursor() |
| 855 | { |
| 856 | if (this->State == vtkImagePlaneWidget::Outside || this->State == vtkImagePlaneWidget::Start) |
| 857 | { |
| 858 | return; |
| 859 | } |
| 860 | |
| 861 | this->State = vtkImagePlaneWidget::Start; |
| 862 | this->HighlightPlane(0); |
| 863 | this->ActivateCursor(0); |
| 864 | this->ActivateText(0); |
| 865 | |
| 866 | this->EventCallbackCommand->SetAbortFlag(1); |
| 867 | this->EndInteraction(); |
| 868 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 869 | this->Interactor->Render(); |
| 870 | } |
| 871 | |
| 872 | //------------------------------------------------------------------------------ |
| 873 | void vtkImagePlaneWidget::StartSliceMotion() |
no test coverage detected