Changeset 3028 in orxonox.OLD for orxonox/branches/bezierTrack/src/camera.h
- Timestamp:
- Nov 30, 2004, 2:50:59 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/bezierTrack/src/camera.h
r3023 r3028 11 11 class WorldEntity; 12 12 class World; 13 class CameraTarget; 13 14 14 15 //! Camera … … 30 31 Placement desired_place; //!< where the Camera should be according to calculations 31 32 World* world; 33 CameraTarget* target; 32 34 33 35 /* physical system - not needed yet */ … … 69 71 }; 70 72 73 //! A Class to handle the Target of a Camera. 74 class 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 71 88 #endif
Note: See TracChangeset
for help on using the changeset viewer.