AxesAssembly.tip_length#
- property AxesAssembly.tip_length: tuple[float, float, float][source]#
Length of the tip for each axis.
Value must be non-negative.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> axes_geometry_source = pv.AxesGeometrySource()
>>> axes_geometry_source.tip_length
(0.2, 0.2, 0.2)
>>> axes_geometry_source.tip_length = 0.3
>>> axes_geometry_source.tip_length
(0.3, 0.3, 0.3)
>>> axes_geometry_source.tip_length = (0.1, 0.4, 0.2)
>>> axes_geometry_source.tip_length
(0.1, 0.4, 0.2)