| 374 | } |
| 375 | |
| 376 | void vtkPointWidget::OnMiddleButtonUp() |
| 377 | { |
| 378 | if (this->State == vtkPointWidget::Outside || this->State == vtkPointWidget::Start) |
| 379 | { |
| 380 | return; |
| 381 | } |
| 382 | |
| 383 | this->State = vtkPointWidget::Start; |
| 384 | this->Highlight(0); |
| 385 | |
| 386 | this->EventCallbackCommand->SetAbortFlag(1); |
| 387 | this->EndInteraction(); |
| 388 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 389 | this->Interactor->Render(); |
| 390 | } |
| 391 | |
| 392 | void vtkPointWidget::OnRightButtonDown() |
| 393 | { |
no test coverage detected