------------------------------------------------------------------------------
| 461 | |
| 462 | //------------------------------------------------------------------------------ |
| 463 | void vtkSphereWidget::OnLeftButtonUp() |
| 464 | { |
| 465 | if (this->State == vtkSphereWidget::Outside) |
| 466 | { |
| 467 | return; |
| 468 | } |
| 469 | |
| 470 | this->State = vtkSphereWidget::Start; |
| 471 | this->HighlightSphere(0); |
| 472 | this->HighlightHandle(0); |
| 473 | this->SizeHandles(); |
| 474 | |
| 475 | this->EventCallbackCommand->SetAbortFlag(1); |
| 476 | this->EndInteraction(); |
| 477 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 478 | if (this->Interactor) |
| 479 | { |
| 480 | this->Interactor->Render(); |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | //------------------------------------------------------------------------------ |
| 485 | void vtkSphereWidget::OnRightButtonDown() |
no test coverage detected