pyvista.examples.cells.Hexahedron#
- Hexahedron() UnstructuredGrid [ソース]#
1つの6面体を含む
pyvista.UnstructuredGrid
を作成します.このセルは
pyvista.CellType.HEXAHEDRON
のセルタイプに対応します.- 戻り値:
pyvista.UnstructuredGrid
1つの6面体を含む
pyvista.UnstructuredGrid
.
例
6面体を1つ作り,プロットします.
>>> from pyvista import examples >>> grid = examples.cells.Hexahedron() >>> examples.plot_cell(grid)
グリッドのセルをリストアップします.
>>> grid.cells array([8, 0, 1, 2, 3, 4, 5, 6, 7])
グリッドのポイントをリストアップします.
>>> grid.points pyvista_ndarray([[0., 0., 0.], [1., 0., 0.], [1., 1., 0.], [0., 1., 0.], [0., 0., 1.], [1., 0., 1.], [1., 1., 1.], [0., 1., 1.]])
>>> grid.celltypes # same as pyvista.CellType.HEXAHEDRON array([12], dtype=uint8)