Plot With Floors#
Download Python source code | Download Jupyter notebook
Add a floor/wall at the scene boundary using add_floor().
import pyvista as pv
from pyvista import examples
mesh = examples.download_bunny()
pl = pv.Plotter()
pl.add_mesh(mesh)
pl.add_floor('-y')
pl.add_floor('-z')
pl.show()

Total running time of the script: (0 minutes 0.368 seconds)