# Examples from pyvista.AxesActor.shaft_length
# ============================================

import pyvista as pv
axes = pv.Axes()
axes.axes_actor.shaft_length
axes.axes_actor.shaft_length = 0.7
axes.axes_actor.shaft_length
axes.axes_actor.shaft_length = (1.0, 0.9, 0.5)
axes.axes_actor.shaft_length

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

