| 737 | } |
| 738 | |
| 739 | void vtkBoxWidget::OnRightButtonUp() |
| 740 | { |
| 741 | if (this->State == vtkBoxWidget::Outside) |
| 742 | { |
| 743 | return; |
| 744 | } |
| 745 | |
| 746 | this->State = vtkBoxWidget::Start; |
| 747 | this->HighlightOutline(0); |
| 748 | this->SizeHandles(); |
| 749 | |
| 750 | this->EventCallbackCommand->SetAbortFlag(1); |
| 751 | this->EndInteraction(); |
| 752 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 753 | this->Interactor->Render(); |
| 754 | } |
| 755 | |
| 756 | void vtkBoxWidget::OnMouseMove() |
| 757 | { |
no test coverage detected