Changeset 3023 in orxonox.OLD for orxonox/branches/bezierTrack/src/camera.cc
- Timestamp:
- Nov 30, 2004, 1:13:48 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/bezierTrack/src/camera.cc
r3013 r3023 32 32 bound = NULL; 33 33 /* give it some physical live */ 34 m = 10; 35 a = new Vector(0.0, 0.0, 0.0); 36 v = new Vector(0.0, 0.0, 0.0); 37 fs = new Vector(0.0, 0.0, 0.0); 34 mass = 10; 35 acceleration = new Vector(0.0, 0.0, 0.0); 36 velocity = new Vector(0.0, 0.0, 0.0); 38 37 cameraMode = NORMAL; 39 38 deltaTime = 3000.0; … … 244 243 // ===== second camera control calculation option 245 244 /* 246 gluLookAt(actual_place. r.x, actual_place.r.y, actual_place.r.z,247 plBound->r.x, plBound->r.y, plBound->r.z,245 gluLookAt(actual_place.pos.x, actual_place.pos.y, actual_place.pos.z, 246 bound->pos.x, bound->pos.y, bound->pos.z, 248 247 0.0, 0.0, 1.0); 249 */ 248 */ 250 249 251 250 glMatrixMode (GL_MODELVIEW);
Note: See TracChangeset
for help on using the changeset viewer.