pyvista.ExplicitStructuredGrid.cell_coords#
- ExplicitStructuredGrid.cell_coords(ind: int | ndarray[Any, dtype[integer]] | Sequence[int]) None | Tuple[int] | ndarray[Any, dtype[integer]] | Sequence[ndarray[Any, dtype[integer]] | Sequence[int]] [ソース]#
セル構造の座標を返します.
- パラメータ:
- ind
int
|IntVector
セルID.
- ind
- 戻り値:
tuple
(int
),numpy.ndarray
,or
None
セル構造の座標.
ind
がグリッド範囲外の場合はNone
.
参考
pyvista.ExplicitStructuredGrid.cell_id
セルのIDを返します.
例
>>> from pyvista import examples >>> grid = examples.load_explicit_structured() >>> grid.cell_coords(19) (3, 4, 0)
>>> grid.cell_coords((19, 31, 41, 54)) array([[3, 4, 0], [3, 2, 1], [1, 0, 2], [2, 3, 2]])