Changeset 3028 in orxonox.OLD for orxonox/branches/bezierTrack/src/track.h
- Timestamp:
- Nov 30, 2004, 2:50:59 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/bezierTrack/src/track.h
r3018 r3028 15 15 To create special levels with special camera movement, rules or whatever, derive from this base class. 16 16 */ 17 class Track 17 class Track : public Coordinate 18 18 { 19 19 private: … … 22 22 Vector* end; 23 23 BezierCurve curve; 24 25 float mainTime; 24 26 // Vector* direction; // unity direction vector: it is costy to always recalculate it 25 27 //Vector* up; // direction where up is ment to be - diffuse in space, eh? … … 39 41 void addHotPoint (Vector hotPoint); 40 42 43 Vector getPos(void); 41 44 Vector getPos(float t); 45 Vector getDir (void); 42 46 Vector getDir (float t); 47 Quaternion getQuat (void); 48 Quaternion getQuat (float t); 49 Coord getCoord (void); 50 Coord getCoord (float t); 43 51 44 52
Note: See TracChangeset
for help on using the changeset viewer.