Quaternion.h 840 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef QUATERNION_H
  2. #define QUATERNION_H
  3. #include "math/Vector.h"
  4. #include "utils/StringBuffer.h"
  5. class Quaternion {
  6. Vector3 xyz;
  7. float w;
  8. friend Vector3 operator*(const Vector3& v, const Quaternion& q);
  9. public:
  10. Quaternion();
  11. Quaternion(const Vector3& axis, float angle);
  12. Quaternion lerp(float f, const Quaternion& other) const;
  13. Quaternion& operator*=(const Quaternion& other);
  14. Quaternion operator*(const Quaternion& other) const;
  15. Vector3 operator*(const Vector3& v) const;
  16. template<int L>
  17. void toString(StringBuffer<L>& s) const {
  18. s.append("(");
  19. s.append(xyz[0]).append(" i + ");
  20. s.append(xyz[1]).append(" j + ");
  21. s.append(xyz[2]).append(" k + ");
  22. s.append(w).append(')');
  23. }
  24. };
  25. Vector3 operator*(const Vector3& v, const Quaternion& q);
  26. #endif