------------------------------------------------------------------------------
| 555 | |
| 556 | //------------------------------------------------------------------------------ |
| 557 | void vtkLineWidget::HighlightHandles(int highlight) |
| 558 | { |
| 559 | if (highlight) |
| 560 | { |
| 561 | this->ValidPick = 1; |
| 562 | this->HandlePicker->GetPickPosition(this->LastPickPosition); |
| 563 | this->Handle[0]->SetProperty(this->SelectedHandleProperty); |
| 564 | this->Handle[1]->SetProperty(this->SelectedHandleProperty); |
| 565 | } |
| 566 | else |
| 567 | { |
| 568 | this->Handle[0]->SetProperty(this->HandleProperty); |
| 569 | this->Handle[1]->SetProperty(this->HandleProperty); |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | //------------------------------------------------------------------------------ |
| 574 | void vtkLineWidget::HighlightLine(int highlight) |
no test coverage detected