Change visualisation

how can I see the Z axis up,


i am trying with the following lines, but i couldn’t find the right configuration of theta and phi.

/vis/viewer/set/viewpointVector 0 0 1

/vis/viewer/set/viewpointThetaPhi 0 360

If you want to see the z-axis up

/vis/viewer/set/upVector 0 0 1

This initially gives some conflict since you can’t have the viewpoint vector (which is z-axis by default) and the up vector the same, so choose another viewpoint, e.g.:

/vis/viewer/set/viewpointVector 1 0 0

In general, do look around, using ls or help to see if there is a command that might help you. Or look in the Application Developers Guide under “Built-in commands”.

thank you :slight_smile: