pyvista.Renderer.view_isometric

pyvista.Renderer.view_isometric#

Renderer.view_isometric(negative=False, render=True, bounds=None) None[ソース]#

カメラを既定のアイソメビューにリセットします.

ビューにシーン内のすべてのアクターが表示されます.

パラメータ:
negativebool, default: False

もう一方のアイソメトリック方向から見た図.

renderbool, default: True

レンダーウィンドウが表示されている場合は,カメラ位置を設定した後にレンダーをトリガーします.

boundsiterable(int), optional

Automatically set up the camera based on a specified bounding box (x_min, x_max, y_min, y_max, z_min, z_max).

アイソメトリック図.

>>> from pyvista import demos
>>> pl = demos.orientation_plotter()
>>> pl.view_isometric()
>>> pl.show()
../../../_images/pyvista-Renderer-view_isometric-1_00_00.png

負のアイソメトリック図.

>>> from pyvista import demos
>>> pl = demos.orientation_plotter()
>>> pl.view_isometric(negative=True)
>>> pl.show()
../../../_images/pyvista-Renderer-view_isometric-1_01_00.png