pyvista.examples.downloads.download_biplane

pyvista.examples.downloads.download_biplane#

download_biplane(load=True)[source]#

Download biplane dataset.

Warning

This dataset is known to cause segmentation faults on Windows.

Parameters:
loadbool, default: True

Load the dataset after downloading it when True. Set this to False and only the filename will be returned.

Returns:
outputpyvista.MultiBlock | str

DataSet or filename depending on load.

Examples

>>> import sys
>>> from pyvista import examples
>>> if sys.platform != 'win32':  # segfaults on Windows
...     dataset = examples.download_biplane()
...     dataset.plot(cpos='zy', zoom=1.5)
../../../_images/pyvista-examples-downloads-download_biplane-e998242b096b50f7_00_00.png

See also

Biplane Dataset

See this dataset in the Dataset Gallery for more info.