# Examples from pyvista.AxesAssembly.tip_length
# =============================================

import pyvista as pv
axes_geometry_source = pv.AxesGeometrySource()
axes_geometry_source.tip_length
axes_geometry_source.tip_length = 0.3
axes_geometry_source.tip_length
axes_geometry_source.tip_length = (0.1, 0.4, 0.2)
axes_geometry_source.tip_length

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

