pyvista.ExplicitStructuredGrid.visible_bounds#
- property ExplicitStructuredGrid.visible_bounds: Tuple[int | float, int | float, int | float, int | float, int | float, int | float][ソース]#
表示されているセルの境界ボックスを返します.
グリッド全体のバウンディングボックスを返す bounds とは異なり,このメソッドは,ゴーストセル配列が
HIDDENCELL
でない可視セルのバウンディングボックスを返します.例
>>> from pyvista import examples >>> grid = examples.load_explicit_structured() >>> grid = grid.hide_cells(range(80, 120)) >>> grid.bounds (0.0, 80.0, 0.0, 50.0, 0.0, 6.0)
>>> grid.visible_bounds (0.0, 80.0, 0.0, 50.0, 0.0, 4.0)