------------------------------------------------------------------------------
| 1797 | |
| 1798 | //------------------------------------------------------------------------------ |
| 1799 | void vtkCubeAxesActor::AutoScale(vtkViewport* viewport) |
| 1800 | { |
| 1801 | // Current implementation only for perspective projections. |
| 1802 | this->AutoScale(viewport, this->XAxes); |
| 1803 | this->AutoScale(viewport, this->YAxes); |
| 1804 | this->AutoScale(viewport, this->ZAxes); |
| 1805 | } |
| 1806 | |
| 1807 | //------------------------------------------------------------------------------ |
| 1808 | void vtkCubeAxesActor::AutoScale(vtkViewport* viewport, vtkAxisActor* axis[NUMBER_OF_ALIGNED_AXIS]) |
no test coverage detected