2015-05-19 04:16:51 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2021-02-28 11:17:54 +00:00
|
|
|
Copyright (c) 2006-2021, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2015-05-19 04:16:51 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 04:17:45 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
2015-05-19 04:16:51 +00:00
|
|
|
following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 04:17:45 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 04:16:51 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 04:17:45 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 04:16:51 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 04:17:45 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 04:16:51 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 04:17:45 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 04:16:51 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file quaternion.h
|
|
|
|
* @brief Quaternion structure, including operators when compiling in C++
|
|
|
|
*/
|
2016-07-11 18:56:38 +00:00
|
|
|
#pragma once
|
2015-05-19 04:16:51 +00:00
|
|
|
#ifndef AI_QUATERNION_H_INC
|
|
|
|
#define AI_QUATERNION_H_INC
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2019-10-11 11:27:36 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# pragma GCC system_header
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <assimp/defs.h>
|
2016-07-15 02:53:49 +00:00
|
|
|
|
2015-05-19 04:16:51 +00:00
|
|
|
template <typename TReal> class aiVector3t;
|
|
|
|
template <typename TReal> class aiMatrix3x3t;
|
2020-12-17 08:13:35 +00:00
|
|
|
template <typename TReal> class aiMatrix4x4t;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Represents a quaternion in a 4D vector. */
|
|
|
|
template <typename TReal>
|
|
|
|
class aiQuaterniont
|
|
|
|
{
|
|
|
|
public:
|
2018-09-21 14:25:27 +00:00
|
|
|
aiQuaterniont() AI_NO_EXCEPT : w(1.0), x(), y(), z() {}
|
2015-05-19 04:18:29 +00:00
|
|
|
aiQuaterniont(TReal pw, TReal px, TReal py, TReal pz)
|
|
|
|
: w(pw), x(px), y(py), z(pz) {}
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Construct from rotation matrix. Result is undefined if the matrix is not orthonormal. */
|
2015-10-29 12:04:23 +00:00
|
|
|
explicit aiQuaterniont( const aiMatrix3x3t<TReal>& pRotMatrix);
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Construct from euler angles */
|
2021-07-26 13:47:19 +00:00
|
|
|
aiQuaterniont( TReal roty, TReal rotz, TReal rotx);
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Construct from an axis-angle pair */
|
|
|
|
aiQuaterniont( aiVector3t<TReal> axis, TReal angle);
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Construct from a normalized quaternion stored in a vec3 */
|
2015-10-29 12:04:23 +00:00
|
|
|
explicit aiQuaterniont( aiVector3t<TReal> normalized);
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Returns a matrix representation of the quaternion */
|
|
|
|
aiMatrix3x3t<TReal> GetMatrix() const;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
bool operator== (const aiQuaterniont& o) const;
|
|
|
|
bool operator!= (const aiQuaterniont& o) const;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2020-12-17 07:07:03 +00:00
|
|
|
// transform vector by matrix
|
|
|
|
aiQuaterniont& operator *= (const aiMatrix4x4t<TReal>& mat);
|
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
bool Equal(const aiQuaterniont& o, TReal epsilon = 1e-6) const;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Normalize the quaternion */
|
|
|
|
aiQuaterniont& Normalize();
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Compute quaternion conjugate */
|
|
|
|
aiQuaterniont& Conjugate ();
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Rotate a point by this quaternion */
|
2020-03-26 17:08:40 +00:00
|
|
|
aiVector3t<TReal> Rotate (const aiVector3t<TReal>& in) const;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Multiply two quaternions */
|
|
|
|
aiQuaterniont operator* (const aiQuaterniont& two) const;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
/** Performs a spherical interpolation between two quaternions and writes the result into the third.
|
|
|
|
* @param pOut Target object to received the interpolated rotation.
|
|
|
|
* @param pStart Start rotation of the interpolation at factor == 0.
|
|
|
|
* @param pEnd End rotation, factor == 1.
|
|
|
|
* @param pFactor Interpolation factor between 0 and 1. Values outside of this range yield undefined results.
|
|
|
|
*/
|
|
|
|
static void Interpolate( aiQuaterniont& pOut, const aiQuaterniont& pStart,
|
|
|
|
const aiQuaterniont& pEnd, TReal pFactor);
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-05-19 04:18:29 +00:00
|
|
|
//! w,x,y,z components of the quaternion
|
|
|
|
TReal w, x, y, z;
|
2015-05-19 04:16:51 +00:00
|
|
|
} ;
|
|
|
|
|
2016-07-15 02:53:49 +00:00
|
|
|
typedef aiQuaterniont<ai_real> aiQuaternion;
|
2015-05-19 04:16:51 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
struct aiQuaternion {
|
2016-07-15 02:53:49 +00:00
|
|
|
ai_real w, x, y, z;
|
2015-05-19 04:16:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // AI_QUATERNION_H_INC
|