pyvista.Cell.points#

property Cell.points: ndarray[ソース]#

セルの点座標を返します.

戻り値:
np.ndarray

セルの点座標.

>>> import pyvista as pv
>>> mesh = pv.Sphere()
>>> mesh.get_cell(0).points
array([[0.05405951, 0.        , 0.49706897],
       [0.05287818, 0.0112396 , 0.49706897],
       [0.        , 0.        , 0.5       ]])