------------------------------------------------------------------------------
| 1625 | |
| 1626 | //------------------------------------------------------------------------------ |
| 1627 | void vtkAxisActor::SetCamera(vtkCamera* camera) |
| 1628 | { |
| 1629 | if (this->Camera != camera) |
| 1630 | { |
| 1631 | this->Camera = camera; |
| 1632 | this->TitleProp->SetCamera(camera); |
| 1633 | this->ExponentProp->SetCamera(camera); |
| 1634 | this->Modified(); |
| 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | //------------------------------------------------------------------------------ |
| 1639 | vtkCamera* vtkAxisActor::GetCamera() |
no test coverage detected