# Examples from pyvista.examples.downloads.download_biplane
# =========================================================

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 https://docs.pyvista.org/api/examples/dataset_gallery.html#biplane-dataset
#     See this dataset in the Dataset Gallery for more info.

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

