AxesActor.tip_length#
- property AxesActor.tip_length: tuple[float, float, float][source]#
Return or set the length of the tip.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> axes = pv.Axes()
>>> axes.axes_actor.tip_length
(0.2, 0.2, 0.2)
>>> axes.axes_actor.tip_length = 0.3
>>> axes.axes_actor.tip_length
(0.3, 0.3, 0.3)
>>> axes.axes_actor.tip_length = (0.1, 0.4, 0.2)
>>> axes.axes_actor.tip_length
(0.1, 0.4, 0.2)