AxesActor.total_length#
- property AxesActor.total_length: tuple[float, float, float][source]#
Return or set the length of all axes.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> axes = pv.Axes()
>>> axes.axes_actor.total_length
(1.0, 1.0, 1.0)
>>> axes.axes_actor.total_length = 1.2
>>> axes.axes_actor.total_length
(1.2, 1.2, 1.2)
>>> axes.axes_actor.total_length = (1.0, 0.9, 0.5)
>>> axes.axes_actor.total_length
(1.0, 0.9, 0.5)