| 695 | } |
| 696 | |
| 697 | void vtkSplineWidget::OnMiddleButtonUp() |
| 698 | { |
| 699 | if (this->State == vtkSplineWidget::Outside || this->State == vtkSplineWidget::Start) |
| 700 | { |
| 701 | return; |
| 702 | } |
| 703 | |
| 704 | this->State = vtkSplineWidget::Start; |
| 705 | this->HighlightLine(0); |
| 706 | |
| 707 | this->SizeHandles(); |
| 708 | |
| 709 | this->EventCallbackCommand->SetAbortFlag(1); |
| 710 | this->EndInteraction(); |
| 711 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 712 | this->Interactor->Render(); |
| 713 | } |
| 714 | |
| 715 | void vtkSplineWidget::OnRightButtonDown() |
| 716 | { |
no test coverage detected