# Examples from pyvista.Cell.get_face
# ===================================

# Return the face IDs composing the first face of an example tetrahedron.
from pyvista.examples.cells import Tetrahedron
mesh = Tetrahedron()
cell = mesh.get_cell(0)
face = cell.get_face(0)
face.point_ids

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

