Changeset 7003 in orxonox.OLD for trunk/src/lib/math
- Timestamp:
- Feb 3, 2006, 2:55:14 AM (19 years ago)
- Location:
- trunk/src/lib/math
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/math/quaternion.cc
r6616 r7003 227 227 * outputs some nice formated debug information about this quaternion 228 228 */ 229 void Quaternion::debug() 229 void Quaternion::debug() const 230 230 { 231 231 PRINT(0)("real a=%f; imag: x=%f y=%f z=%f\n", w, v.x, v.y, v.z); 232 232 } 233 233 234 void Quaternion::debug2() 234 void Quaternion::debug2() const 235 235 { 236 236 Vector axis = this->getSpacialAxis(); -
trunk/src/lib/math/quaternion.h
r6627 r7003 103 103 static Quaternion quatSlerp(const Quaternion& from, const Quaternion& to, float t); 104 104 105 void debug() ;106 void debug2() ;105 void debug() const; 106 void debug2() const; 107 107 108 108
Note: See TracChangeset
for help on using the changeset viewer.