pyvista.Prop3D.position#

property Prop3D.position: Tuple[float, float, float][ソース]#

エンティティの位置を返すか設定します.

アクターの位置を変更します.これは基になるデータセットの位置を変更するのではなく, pyvista.Plotter におけるアクタの相対的な位置を変更するだけであることに注意してください.

>>> import pyvista as pv
>>> mesh = pv.Sphere()
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(mesh, color='b')
>>> actor = pl.add_mesh(mesh, color='r')
>>> actor.position = (0, 0, 1)  # shifts the red sphere up
>>> pl.show()
../../../_images/pyvista-Prop3D-position-1_00_00.png