Changeset 3010 in orxonox.OLD for orxonox/branches/bezierTrack/src/track.h
- Timestamp:
- Nov 27, 2004, 1:05:47 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/bezierTrack/src/track.h
r2636 r3010 20 20 Vector* offset; 21 21 Vector* end; 22 BezierCurve curve; 22 23 // Vector* direction; // unity direction vector: it is costy to always recalculate it 23 24 //Vector* up; // direction where up is ment to be - diffuse in space, eh? … … 25 26 Uint32 nextID; 26 27 28 Track* next; 29 Track* previous; 27 30 28 31 public: 29 32 Track (); 30 Track (Uint32 number, Uint32 next, Vector* start, Vector* finish);33 31 34 ~Track (); 32 35 virtual void init(); 36 37 void addPoint (Vector& point); 38 void addHotPoint (Vector& hotPoint); 33 39 34 40 virtual void post_enter (WorldEntity* entity); // handle coordinate transition in here !!! (when dist < 0 or dist > lasttracklenght)
Note: See TracChangeset
for help on using the changeset viewer.