pyvista.Cell.edges#

property Cell.edges: List[Cell][source]#

Return a list of edges composing the cell.

Returns:
List[Cell]

A list of edges composing the cell.

Examples

>>> from pyvista.examples.cells import Hexahedron
>>> mesh = Hexahedron()
>>> cell = mesh.get_cell(0)
>>> edges = cell.edges
>>> len(edges)
12