# Examples from pyvista.Plotter.view_xz
# =====================================

# View the XZ plane of a built-in mesh example.
from pyvista import examples
import pyvista as pv
airplane = examples.load_airplane()
pl = pv.Plotter()
_ = pl.add_mesh(airplane)
pl.view_xz()
pl.show()

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

