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

# Plot the density of the air surrounding the NACA airfoil using the
# `"jet"` color map.
from pyvista import examples
import pyvista as pv
cpos = pv.CameraPosition(
    position=(-0.22, 0.0, 2.52),
    focal_point=(0.43, 0.0, 0.0),
    viewup=(0.0, 1.0, 0.0),
)
dataset = examples.download_naca()
dataset.plot(cpos=cpos, cmap='jet')

# SEE ALSO:
#     Naca Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#naca-dataset
#     See this dataset in the Dataset Gallery for more info.
#     Load data using a Reader https://docs.pyvista.org/examples/00-load/reader.html#reader-example
#     Example using this dataset.

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

