download_biplane#
- download_biplane(load: bool = True) MultiBlock | str[source]#
Download biplane dataset.
Warning
This dataset is known to cause segmentation faults on Windows.
- Parameters:
- Returns:
- output
pyvista.MultiBlock|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> import sys
>>> from pyvista import examples
>>> if sys.platform != 'win32': # segfaults on Windows
... dataset = examples.download_biplane()
... dataset.plot(cpos='zy', zoom=1.5)
See also
- Biplane Dataset
See this dataset in the Dataset Gallery for more info.