pyvista.Cell.point_ids#

property Cell.point_ids: List[int][source]#

Get the point IDs composing the cell.

Returns:
List[int]

The point IDs composing the cell.

Examples

>>> import pyvista as pv
>>> mesh = pv.Sphere()
>>> mesh.get_cell(0).point_ids
[2, 30, 0]