------------------------------------------------------------------------------
| 2610 | |
| 2611 | //------------------------------------------------------------------------------ |
| 2612 | vtkAxisFollower** vtkAxisActor::GetLabelActors() |
| 2613 | { |
| 2614 | this->LabelActors.clear(); |
| 2615 | for (const auto& label : this->LabelProps) |
| 2616 | { |
| 2617 | this->LabelActors.push_back(label->GetFollower()); |
| 2618 | } |
| 2619 | |
| 2620 | return this->LabelActors.data(); |
| 2621 | } |
| 2622 | |
| 2623 | //------------------------------------------------------------------------------ |
| 2624 | vtkAxisFollower* vtkAxisActor::GetTitleActor() |
nothing calls this directly
no test coverage detected