Or something like with the bottom view both "left/right angle" and also "tilt angle" are both trying to rotate and measure angles around the same z axis direction.
When you set the view angle properties those angle values themselves are not actually stored, the thing that actually defines a view is a camera point, a view direction and an "up" direction. When you read a view angle property the angles are calculated from those directions.
Another thing you might try is get all 3 values .upDownAngle, .leftRightAngle, and .tiltAngle , then add on to the tilt angle and set them all with .setAngles( updown, leftright, tilt );
- Michael
|