瀏覽代碼

math: add Quat::transform() to directly apply a quaternion to a vector.

legacy
Sam Hocevar sam 12 年之前
父節點
當前提交
5ff96967a0
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      src/lol/math/vector.h

+ 7
- 0
src/lol/math/vector.h 查看文件

@@ -947,6 +947,13 @@ template <typename T> struct Quat
return Quat<T>(w, -x, -y, -z);
}

inline Vec3<T> transform(Vec3<T> const &v)
{
Quat<T> p = Quat<T>(0, v.x, v.y, v.z);
Quat<T> q = *this * p / *this;
return Vec3<T>(q.x, q.y, q.z);
}

#if !defined __ANDROID__
template<typename U>
friend std::ostream &operator<<(std::ostream &stream, Quat<U> const &v);


Loading…
取消
儲存