# Examples from pyvista.Camera
# ============================

# Create a camera at the pyvista module level.
import pyvista as pv
camera = pv.Camera()

# Access the active camera of a plotter and get the position of the
# camera.
pl = pv.Plotter()
pl.camera.position

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

