pyvista.examples.downloads.download_blow#

download_blow(load=True)[source]#

Download blow dataset.

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.UnstructuredGrid | str

DataSet or filename depending on load.

Examples

>>> from pyvista import examples
>>> cpos = [
...     [71.96, 86.1, 28.45],
...     [3.5, 12.0, 1.0],
...     [-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,
... )
../../../_images/pyvista-examples-downloads-download_blow-1_00_00.png