Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7971 in orxonox.OLD for branches/gui/src/lib/math/vector.h


Ignore:
Timestamp:
May 30, 2006, 10:13:29 AM (18 years ago)
Author:
bensch
Message:

preparing for Signal-Slot algo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/math/vector.h

    r7939 r7971  
    9696  inline void slerpTo(const Vector& toVec, float t) { *this + (toVec - *this) * t; };
    9797
     98  /** @returns a Null Vector */
     99  inline static const Vector& nullVector() { static Vector nullVector; return nullVector; }
    98100  void debug() const;
    99101
Note: See TracChangeset for help on using the changeset viewer.