# Examples from pyvista.UnstructuredGrid.cell_connectivity
# ========================================================

# Return the cell connectivity for the first two cells.
import pyvista as pv
from pyvista import examples
hex_beam = pv.read(examples.hexbeamfile)
hex_beam.cell_connectivity[:16]

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

