------------------------------------------------------------------------------
| 802 | |
| 803 | //------------------------------------------------------------------------------ |
| 804 | void vtkLineWidget::OnRightButtonUp() |
| 805 | { |
| 806 | if (this->State == vtkLineWidget::Outside || this->State == vtkLineWidget::Start) |
| 807 | { |
| 808 | return; |
| 809 | } |
| 810 | |
| 811 | this->State = vtkLineWidget::Start; |
| 812 | this->HighlightLine(0); |
| 813 | this->HighlightHandles(0); |
| 814 | |
| 815 | this->SizeHandles(); |
| 816 | |
| 817 | this->EventCallbackCommand->SetAbortFlag(1); |
| 818 | this->EndInteraction(); |
| 819 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 820 | this->Interactor->Render(); |
| 821 | } |
| 822 | |
| 823 | //------------------------------------------------------------------------------ |
| 824 | void vtkLineWidget::OnMouseMove() |
no test coverage detected