download_warping_spheres#
- download_warping_spheres(*, load: bool = True) PartitionedDataSet | str[source]#
Download warping spheres dataset.
Added in version 0.47.0.
Examples#
Download Python source code | Download Jupyter notebook
Load the warping spheres and plot them.
>>> from pyvista import examples
>>> import pyvista as pv
>>> partitioned = examples.download_warping_spheres()
>>> cpos = pv.CameraPosition(
... position=(70.0, -70.0, 0.0),
... focal_point=(7.0, 7.0, 7.0),
... viewup=(0.0, 0.0, 1.0),
... )
>>> partitioned.plot(cpos=cpos)
See also
- Warping Spheres Dataset
See this dataset in the Dataset Gallery for more info.