Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3028 in orxonox.OLD for orxonox/branches/bezierTrack/src/camera.h


Ignore:
Timestamp:
Nov 30, 2004, 2:50:59 PM (21 years ago)
Author:
bensch
Message:

orxonox/branches/bezierTrack: now Camera follows Path. heavy cleanUp of not used stuff like elyptical Camera and so on…

File:
1 edited

Legend:

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

    r3023 r3028  
    1111class WorldEntity;
    1212class World;
     13class CameraTarget;
    1314
    1415//! Camera
     
    3031  Placement desired_place;        //!< where the Camera should be according to calculations
    3132  World* world;
     33  CameraTarget* target;
    3234 
    3335  /* physical system - not needed yet */
     
    6971};
    7072
     73//! A Class to handle the Target of a Camera.
     74class CameraTarget : public Coordinate
     75{
     76 private:
     77  WorldEntity* lookAt;
     78 
     79 
     80 public:
     81  CameraTarget ();
     82  CameraTarget (Vector pos); //!< a target only needs a Position and no Rotation
     83
     84  void setLookAt (WorldEntity* lookat);
     85
     86};
     87
    7188#endif
Note: See TracChangeset for help on using the changeset viewer.