| 324 | } |
| 325 | |
| 326 | void vtkPointWidget::OnLeftButtonUp() |
| 327 | { |
| 328 | if (this->State == vtkPointWidget::Outside || this->State == vtkPointWidget::Start) |
| 329 | { |
| 330 | return; |
| 331 | } |
| 332 | |
| 333 | this->State = vtkPointWidget::Start; |
| 334 | this->Highlight(0); |
| 335 | |
| 336 | this->EventCallbackCommand->SetAbortFlag(1); |
| 337 | this->EndInteraction(); |
| 338 | this->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr); |
| 339 | this->Interactor->Render(); |
| 340 | } |
| 341 | |
| 342 | void vtkPointWidget::OnMiddleButtonDown() |
| 343 | { |
no test coverage detected