# Examples from pyvista.examples.cells.plot_cell
# ==============================================

# Create and plot a single hexahedron.
from pyvista import examples
grid = examples.cells.Hexahedron()
examples.plot_cell(grid)

# Show normals and customize the size of various elements in the rendering.
examples.plot_cell(
    grid,
    show_normals=True,
    normals_scale=0.2,
    line_width=8,
    point_size=50,
    font_size=30,
)

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

