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

from pyvista import examples
dataset = examples.download_tri_quadratic_hexahedron()
dataset.plot()

# Show non-linear subdivision.
surf = dataset.extract_surface(algorithm=None, nonlinear_subdivision=5)
surf.plot(smooth_shading=True)

# SEE ALSO:
#     Tri Quadratic Hexahedron Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#tri-quadratic-hexahedron-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

