Changeset 8162 in orxonox.OLD for branches/osx/src/lib/math
- Timestamp:
- Jun 5, 2006, 5:27:38 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/osx/src/lib/math/vector.h
r7711 r8162 98 98 Vector getNormalized() const; 99 99 Vector abs(); 100 100 101 /** @param toVec nears this Vector to... @param t how much to advance (0.0: not at all; 1.0: fully) */ 101 102 inline void slerpTo(const Vector& toVec, float t) { *this + (toVec - *this) * t; };
Note: See TracChangeset
for help on using the changeset viewer.