Changeset 3023 in orxonox.OLD for orxonox/branches/bezierTrack/src/camera.h
- Timestamp:
- Nov 30, 2004, 1:13:48 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/bezierTrack/src/camera.h
r2636 r3023 23 23 enum CAMERA_MODE {NORMAL, SMOTH_FOLLOW, STICKY, ELLIPTICAL}; 24 24 25 class Camera { 25 class Camera : public Coordinate 26 { 26 27 private: 27 28 WorldEntity* bound; //!< the WorldEntity the Camera is bound to … … 31 32 32 33 /* physical system - not needed yet */ 33 float m; //!< mass 34 Vector *fs; //!< seil-kraft 35 Vector *a; //!< acceleration 36 Vector *v; //!< velocity 34 float mass; //!< mass 35 Vector *acceleration; //!< acceleration 36 Vector *velocity; //!< velocity 37 37 38 38 /* elliptical camera mode variables */
Note: See TracChangeset
for help on using the changeset viewer.