pyvista.examples.cells.Empty#
- Empty() UnstructuredGrid [ソース]#
1つの空のセルを含む
pyvista.UnstructuredGrid
を作成します.このセルは
pyvista.CellType.EMPTY_CELL
のセルタイプに対応します.- 戻り値:
pyvista.UnstructuredGrid
1 つの空のセルを含みます UnstructuredGrid.
例
空のセルを1つ作成します.
>>> from pyvista import examples >>> grid = examples.cells.Empty()
グリッドのセルをリストアップします.
>>> grid.cells array([0])
グリッドのポイントをリストアップします.
>>> grid.points pyvista_ndarray([], shape=(0, 3), dtype=float64)
>>> grid.celltypes # same as pyvista.CellType.EMPTY_CELL array([0], dtype=uint8)