------------------------------------------------------------------------------
| 331 | |
| 332 | //------------------------------------------------------------------------------ |
| 333 | void vtkSphereWidget::HighlightSphere(int highlight) |
| 334 | { |
| 335 | if (highlight) |
| 336 | { |
| 337 | this->ValidPick = 1; |
| 338 | this->Picker->GetPickPosition(this->LastPickPosition); |
| 339 | this->SphereActor->SetProperty(this->SelectedSphereProperty); |
| 340 | } |
| 341 | else |
| 342 | { |
| 343 | this->SphereActor->SetProperty(this->SphereProperty); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | //------------------------------------------------------------------------------ |
| 348 | void vtkSphereWidget::HighlightHandle(int highlight) |
no test coverage detected