pyvista.examples.downloads.download_room_cff#

download_room_cff(load=True)[source]#

Download a room model in CFF format.

Parameters:
loadbool, default: True

Load the dataset after downloading it when True. Set this to False and only the filename will be returned.

Returns:
pyvista.MultiBlock or tuple

DataSet or tuple of filenames depending on load.

Examples

>>> import pyvista as pv
>>> from pyvista import examples
>>> blocks = examples.download_room_cff()
>>> mesh = blocks[0]
>>> mesh.plot(cpos="xy", scalars="SV_T")
../../../_images/pyvista-examples-downloads-download_room_cff-1_00_00.png

See also

Room Cff Dataset

See this dataset in the Dataset Gallery for more info.