download_blow#
- download_blow(load: bool = True) UnstructuredGrid | str[source]#
Download blow dataset.
- Parameters:
- Returns:
- output
pyvista.UnstructuredGrid|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> import pyvista as pv
>>> cpos = pv.CameraPosition(
... position=(71.96, 86.1, 28.45),
... focal_point=(3.5, 12.0, 1.0),
... viewup=(-0.18, -0.19, 0.96),
... )
>>> dataset = examples.download_blow()
>>> dataset.plot(
... scalars='displacement1',
... component=1,
... cpos=cpos,
... show_scalar_bar=False,
... smooth_shading=True,
... )
See also
- Blow Dataset
See this dataset in the Dataset Gallery for more info.