pyvista.Cell.point_ids#

property Cell.point_ids: List[int][ソース]#

セルを構成する点IDを返します.

戻り値:
List[int]

セルを構成する点ID.

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