Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3023 in orxonox.OLD for orxonox/branches/bezierTrack/src/camera.cc


Ignore:
Timestamp:
Nov 30, 2004, 1:13:48 AM (21 years ago)
Author:
bensch
Message:

orxonox/branches/bezierTrack: just an idea of how the new Coordinate-System might look like. Many things have to be done here too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/bezierTrack/src/camera.cc

    r3013 r3023  
    3232  bound = NULL;
    3333  /* 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);
    3837  cameraMode = NORMAL;
    3938  deltaTime = 3000.0;
     
    244243  // ===== second camera control calculation option
    245244  /*
    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,
    248247              0.0, 0.0, 1.0);
    249   */
     248  */   
    250249
    251250  glMatrixMode (GL_MODELVIEW);
Note: See TracChangeset for help on using the changeset viewer.