------------------------------------------------------------------------------
| 2599 | |
| 2600 | //------------------------------------------------------------------------------ |
| 2601 | vtkAxisFollower* vtkAxisActor::GetLabelFollower(int index) |
| 2602 | { |
| 2603 | if (static_cast<int>(this->LabelProps.size()) > index) |
| 2604 | { |
| 2605 | return this->LabelProps[index]->GetFollower(); |
| 2606 | } |
| 2607 | |
| 2608 | return nullptr; |
| 2609 | } |
| 2610 | |
| 2611 | //------------------------------------------------------------------------------ |
| 2612 | vtkAxisFollower** vtkAxisActor::GetLabelActors() |
no test coverage detected