# Plot with Floors
# ================

# Add a floor/wall at the boundary of the rendering scene
# using `add_floor()`.
import pyvista as pv
from pyvista import examples

mesh = examples.download_dragon()

pl = pv.Plotter()
pl.add_mesh(mesh)
pl.add_floor('-y')
pl.add_floor('-z')
pl.show()

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

