pyvista.examples.cells.Vertex#

Vertex() UnstructuredGrid[ソース]#

1つの頂点を含む pyvista.UnstructuredGrid を作成します.

このセルは pyvista.CellType.VERTEX のセルタイプに対応します.

戻り値:
pyvista.UnstructuredGrid

1つの頂点を含む pyvista.UnstructuredGrid

頂点を1つ作り,プロットします.

>>> from pyvista import examples
>>> grid = examples.cells.Vertex()
>>> examples.plot_cell(grid)

グリッドのセルをリストアップします.

>>> grid.cells
array([1, 0])

グリッドのポイントをリストアップします.

>>> grid.points
pyvista_ndarray([[0., 0., 0.]])
>>> grid.celltypes  # same as pyvista.CellType.VERTEX
array([1], dtype=uint8)
../../../_images/pyvista-examples-cells-Vertex-1_00_00.png