------------------------------------------------------------------------------
| 572 | |
| 573 | //------------------------------------------------------------------------------ |
| 574 | void vtkLineWidget::HighlightLine(int highlight) |
| 575 | { |
| 576 | if (highlight) |
| 577 | { |
| 578 | this->ValidPick = 1; |
| 579 | this->LinePicker->GetPickPosition(this->LastPickPosition); |
| 580 | this->LineActor->SetProperty(this->SelectedLineProperty); |
| 581 | } |
| 582 | else |
| 583 | { |
| 584 | this->LineActor->SetProperty(this->LineProperty); |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | //------------------------------------------------------------------------------ |
| 589 | void vtkLineWidget::OnLeftButtonDown() |
no test coverage detected