| 538 | } |
| 539 | |
| 540 | void vtkBoxWidget::HighlightOutline(int highlight) |
| 541 | { |
| 542 | if (highlight) |
| 543 | { |
| 544 | this->HexActor->SetProperty(this->SelectedOutlineProperty); |
| 545 | this->HexOutline->SetProperty(this->SelectedOutlineProperty); |
| 546 | } |
| 547 | else |
| 548 | { |
| 549 | this->HexActor->SetProperty(this->OutlineProperty); |
| 550 | this->HexOutline->SetProperty(this->OutlineProperty); |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | void vtkBoxWidget::OnLeftButtonDown() |
| 555 | { |
no test coverage detected