------------------------------------------------------------------------------
| 346 | |
| 347 | //------------------------------------------------------------------------------ |
| 348 | void vtkSphereWidget::HighlightHandle(int highlight) |
| 349 | { |
| 350 | if (highlight) |
| 351 | { |
| 352 | this->ValidPick = 1; |
| 353 | this->Picker->GetPickPosition(this->LastPickPosition); |
| 354 | this->HandleActor->SetProperty(this->SelectedHandleProperty); |
| 355 | } |
| 356 | else |
| 357 | { |
| 358 | this->HandleActor->SetProperty(this->HandleProperty); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | //------------------------------------------------------------------------------ |
| 363 | void vtkSphereWidget::OnLeftButtonDown() |
no test coverage detected