0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ParaViewカメラ位置の指定

0
Posted at

表題の通り.マウスで動かすのではなく,カメラ位置を値で指定したかった.

「View」から「Python Shell」を選択し,出てくる画面に

from paraview.simple import *
view = GetActiveView()
view.CameraPosition = [1,1,1]
view.CameraFocalPoint = [0,0,0]
view.CameraViewUp = [0,0,1]
Render()

を書き込む.CameraPositionを適当なものに設定する.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?