2012-07-31 14:40:21 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-07-31 14:40:21 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2012-07-31 14:40:21 +10:00
|
|
|
*
|
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "quaternion.hpp"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
using util::quaternion;
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template<> const quaternion<float> quaternion<float>::IDENTITY = { 1, 0, 0, 0 };
|
|
|
|
template<> const quaternion<double> quaternion<double>::IDENTITY = { 1, 0, 0, 0 };
|
2012-07-31 14:40:21 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
|
|
|
quaternion<T>
|
|
|
|
quaternion<T>::rotation (T radians, vector<3,T> axis) {
|
|
|
|
radians /= T{2};
|
2012-07-31 14:40:21 +10:00
|
|
|
axis.normalise ();
|
|
|
|
|
|
|
|
return {
|
2014-12-15 20:10:56 +11:00
|
|
|
std::cos (radians),
|
|
|
|
axis.x * std::sin (radians),
|
|
|
|
axis.y * std::sin (radians),
|
|
|
|
axis.z * std::sin (radians)
|
2012-07-31 14:40:21 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
quaternion<T>
|
|
|
|
quaternion<T>::rotation (vector<3,T> from, vector<3,T> to) {
|
2012-07-31 14:40:21 +10:00
|
|
|
auto v = util::cross (from, to);
|
|
|
|
|
|
|
|
return {
|
2015-03-06 01:09:37 +11:00
|
|
|
std::acos (dot (from, to)),
|
2012-07-31 14:40:21 +10:00
|
|
|
v.x,
|
|
|
|
v.y,
|
|
|
|
v.z
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
quaternion<T>
|
|
|
|
quaternion<T>::operator* (const quaternion<T> &rhs) const {
|
2012-07-31 14:40:21 +10:00
|
|
|
return {
|
|
|
|
w * rhs.w - (x * rhs.x + y * rhs.y + z * rhs.z),
|
|
|
|
w * rhs.x + rhs.w * x + y * rhs.z - z * rhs.y,
|
|
|
|
w * rhs.y + rhs.w * y + z * rhs.x - x * rhs.z,
|
|
|
|
w * rhs.z + rhs.w * z + x * rhs.y - y * rhs.x
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2015-01-10 19:40:32 +11:00
|
|
|
template struct util::quaternion<float>;
|
|
|
|
template struct util::quaternion<double>;
|