I'm programming a 3D game where the user controls a first-person camera, and movement is constrained to the inside surface of a sphere. I've managed to constrain the movement, but I'm having trouble figuring out how to manage the camera orientation using quaternions. Ideally the camera up vector should point along the normal of the sphere towards its center, and user should be able to free look around - as if we was always on the bottom of the sphere, no matter where he moves.
|
feedback
|
|
Presumably you have two vectors describing the camera's orienation. One will be your Vup = <0, 1, 0> Vnorm = <0, 0, 1> p = <0, -1, 0> Given a quaternion rotation V'up = qVupq-1 V'norm = qVnormq-1 p' = qpq-1 In your particular situation, you define Each increment is computed by a rotation of some angle θ about the vector | ||||
|
feedback
|
|
Quaternions are normally used to avoid gimbal lock in free space motion (flight sims, etc.). In your case, you actually want the gimbal effect, since a camera that is forced to stay upright will inevitably behave strangely when it has to point almost straight up or down. You should be able to represent the camera's orientation as just a latitude/longitude pair indicating the direction the camera is pointing. | |||||||||||
feedback
|