pyvista.Cell.point_ids

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]