download_room_surface_mesh#
- download_room_surface_mesh(load: bool = True) PolyData | str[source]#
Download the room surface mesh.
This mesh is for demonstrating the difference that depth peeling can provide when rendering translucent geometries.
This mesh is courtesy of Sam Potter.
- Parameters:
- Returns:
- output
pyvista.PolyData|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> dataset = examples.download_room_surface_mesh()
>>> dataset.plot()
See also
- Room Surface Mesh Dataset
See this dataset in the Dataset Gallery for more info.
- Depth Peeling
Example using this dataset.