# Examples from pyvista.examples.examples.load_nut
# ================================================

# Load an example nut and plot with smooth shading.
from pyvista import examples
mesh = examples.load_nut()
mesh.plot(smooth_shading=True, split_sharp_edges=True)

# SEE ALSO:
#     Nut Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#nut-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

