download_blow#
- download_blow(load=True)[source]#
Download blow dataset.
- Parameters
- loadbool,
optional
Load the dataset after downloading it when
True
. Set this toFalse
and only the filename will be returned.
- loadbool,
- Returns
pyvista.UnstructuredGrid
orstr
DataSet or filename depending on
load
.
Examples
>>> from pyvista import examples >>> cpos = [ ... [71.96, 86.1 , 28.45], ... [ 3.5 , 12. , 1. ], ... [-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, ... )