pyvista.Cell.get_face#

Cell.get_face(index: int) Cell[ソース]#

セルを構成する i 番目の面を返します.

パラメータ:
indexint

面ID.

戻り値:
pyvista.Cell

index で指定される面です.

例の四面体の最初の面を構成する面IDを返します.

>>> from pyvista.examples.cells import Tetrahedron
>>> mesh = Tetrahedron()
>>> cell = mesh.get_cell(0)
>>> face = cell.get_face(0)
>>> face.point_ids
[0, 1, 3]