download_can#
- download_can(partial=False)[source]#
Download the can dataset mesh.
Original downloaded from Testing/Data/FileSeriesat from paraview.org. Used for testing hdf files.
- Parameters
- partialbool,
optional
Load part of the dataset. Defaults to to
False
and filename will be returned.
- partialbool,
- Returns
pyvista.PolyData
The example ParaView can DataSet.
Examples
Plot the can dataset.
>>> from pyvista import examples >>> import pyvista >>> dataset = examples.download_can() >>> dataset.plot(scalars='VEL', smooth_shading=True)