220 likes | 380 Views
3d Viewing Illustrated. What you SEE depends on your position. In the real world, what you see depends on where you stand, the direction you look, how you tilt your head, and so on. 3D Versus 2D. In 3D, the y-axis typically points up instead of down.
E N D
What you SEE depends on your position • In the real world, what you see depends on where you stand, the direction you look, how you tilt your head, and so on.
3D Versus 2D • In 3D, the y-axis typically points up instead of down. • Negative coordinates, which are rarely used in 2D, are quite common in 3D. • Because of this, the origin is at the center of space as opposed to the top-left corner as in 2D
Camera Position • Camera positioned at (5, 5, 5): • Looking at the southeast side
Southwest side • Move the camera to position (-5,5,5): • Looking at the southwest side
LookDirection • The lookdirection is a vector that tells the camera where to look. • For the camera below the lookdirection is (-1,-1,-1):
Moving the Camera • Moving the camera does not change the lookdirection:
The lookdirection is based on a lookat point • Changing the lookdirection:
LookAT and LOKDIRECTION • The easiest way to determine the lookdirection is specify a lookat point in the scene and subtract the camera position from it: lookat – camera position • For the above camera position, if the lookat is (0,0,0), then look direction is: • Lookdirection = (0,0,0) – (-5,5,5) = (5, -5, -5)
Southwest view • Given an orthographic camera and the above lookdirection we get the following scene:
The UP Direction • The lookdirection is not enough to get the correct view:
UP Direction Analogy if you're designing a flight simulator, up is the direction perpendicular to the plane's wings, from the plane toward the sky when the plane is on the ground.
Rotating the Camera • We will call rotation around the look vector (or z axis) Roll. • Rotation around the up vector (or y axis) is called Yaw. • Rotation around the Right vector (x axis) is called Pitch. • Below is a picture of an aircraft showing roll, pitch and yaw in terms of the aircraft's local axis. Note: we can use a similar system for our object rotations