Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3321 in orxonox.OLD for orxonox/branches/parenting/src/curve.h


Ignore:
Timestamp:
Jan 3, 2005, 12:25:49 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/parenting: derivation-curve implemented.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/parenting/src/curve.h

    r3320 r3321  
    2020  Vector curvePoint;     //!< The point on the Cureve at a local Time.
    2121  float localTime;       //!< If the time of one point is asked more than once the programm will not calculate it again.
     22  Curve* dirCurve;       //!< The derivation-curve of this Curve.
     23  int derivation;        //!< Which derivation of a Curve is this.
    2224
    2325  //! Handles the curve-points (dynamic List)
     
    5254 public:
    5355  BezierCurve(void);
     56  BezierCurve(int derivation);
    5457  ~BezierCurve(void);
     58  void init(void);
    5559
    5660  Vector calcPos(float t);
Note: See TracChangeset for help on using the changeset viewer.