# Examples from pyvista.AxesActor.total_length
# ============================================

import pyvista as pv
axes = pv.Axes()
axes.axes_actor.total_length
axes.axes_actor.total_length = 1.2
axes.axes_actor.total_length
axes.axes_actor.total_length = (1.0, 0.9, 0.5)
axes.axes_actor.total_length

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

