| 508 | } |
| 509 | |
| 510 | void vtkBrokenLineWidget::HighlightLine(int highlight) |
| 511 | { |
| 512 | if (highlight) |
| 513 | { |
| 514 | this->ValidPick = 1; |
| 515 | this->LinePicker->GetPickPosition(this->LastPickPosition); |
| 516 | this->LineActor->SetProperty(this->SelectedLineProperty); |
| 517 | } |
| 518 | else |
| 519 | { |
| 520 | this->LineActor->SetProperty(this->LineProperty); |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | void vtkBrokenLineWidget::OnLeftButtonDown() |
| 525 | { |
no test coverage detected