# Examples from pyvista.Cell.get_edge
# ===================================

# Extract a single edge from a face and output the IDs of the edge
# points.
import pyvista as pv
mesh = pv.Sphere()
cell = mesh.get_cell(0)
edge = cell.get_edge(0)
edge.point_ids

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

