Nov 30, 2017, 10:51 AM

Using Python script your can get the camera's position like this:

camera=SAMSON.getActiveCamera()
position=camera.eyePosition

or just:

SAMSON.getActiveCamera().eyePosition

To set the eye position of the camera to the desired one you can do:

position=Type.position3(1000, 10000, -10000)
SAMSON.getActiveCamera().eyePosition=position