| 428 | } |
| 429 | |
| 430 | void vtkPointWidget::OnRightButtonUp() |
| 431 | { |
| 432 | if (this->State == vtkPointWidget::Outside || this->State == vtkPointWidget::Start) |
| 433 | { |
| 434 | return; |
| 435 | } |
| 436 | |
| 437 | this->State = vtkPointWidget::Start; |
| 438 | this->Highlight(0); |
| 439 | |
| 440 | this->EventCallbackCommand->SetAbortFlag(1); |
| 441 | this->EndInteraction(); |
| 442 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 443 | this->Interactor->Render(); |
| 444 | } |
| 445 | |
| 446 | void vtkPointWidget::OnMouseMove() |
| 447 | { |
no test coverage detected