# 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)

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