# Examples from pyvista.Axes.origin
# =================================

import pyvista as pv
axes = pv.Axes()
axes.origin

# Set the origin of the camera.
axes.origin = (2.0, 1.0, 1.0)
axes.origin

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

