Changeset 8293 in orxonox.OLD for trunk/src/lib/math
- Timestamp:
- Jun 8, 2006, 11:11:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/math/vector.h
r8145 r8293 93 93 Vector getNormalized() const; 94 94 Vector abs(); 95 95 96 /** @param toVec nears this Vector to... @param t how much to advance (0.0: not at all; 1.0: fully) */ 96 97 inline void slerpTo(const Vector& toVec, float t) { *this + (toVec - *this) * t; };
Note: See TracChangeset
for help on using the changeset viewer.