1.0.0 API documentation
|
Typedefs | |
typedef highp_ddualquat | ddualquat |
Dual-quaternion of default double-qualifier floating-point numbers. More... | |
typedef highp_fdualquat | dualquat |
Dual-quaternion of floating-point numbers. More... | |
typedef highp_fdualquat | fdualquat |
Dual-quaternion of single-qualifier floating-point numbers. More... | |
typedef tdualquat< double, highp > | highp_ddualquat |
Dual-quaternion of high double-qualifier floating-point numbers. More... | |
typedef tdualquat< float, highp > | highp_dualquat |
Dual-quaternion of high single-qualifier floating-point numbers. More... | |
typedef tdualquat< float, highp > | highp_fdualquat |
Dual-quaternion of high single-qualifier floating-point numbers. More... | |
typedef tdualquat< double, lowp > | lowp_ddualquat |
Dual-quaternion of low double-qualifier floating-point numbers. More... | |
typedef tdualquat< float, lowp > | lowp_dualquat |
Dual-quaternion of low single-qualifier floating-point numbers. More... | |
typedef tdualquat< float, lowp > | lowp_fdualquat |
Dual-quaternion of low single-qualifier floating-point numbers. More... | |
typedef tdualquat< double, mediump > | mediump_ddualquat |
Dual-quaternion of medium double-qualifier floating-point numbers. More... | |
typedef tdualquat< float, mediump > | mediump_dualquat |
Dual-quaternion of medium single-qualifier floating-point numbers. More... | |
typedef tdualquat< float, mediump > | mediump_fdualquat |
Dual-quaternion of medium single-qualifier floating-point numbers. More... | |
Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | dual_quat_identity () |
Creates an identity dual quaternion. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | dualquat_cast (mat< 2, 4, T, Q > const &x) |
Converts a 2 * 4 matrix (matrix which holds real and dual parts) to a quaternion. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | dualquat_cast (mat< 3, 4, T, Q > const &x) |
Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | inverse (tdualquat< T, Q > const &q) |
Returns the q inverse. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | lerp (tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a) |
Returns the linear interpolation of two dual quaternion. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL mat< 2, 4, T, Q > | mat2x4_cast (tdualquat< T, Q > const &x) |
Converts a quaternion to a 2 * 4 matrix. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL mat< 3, 4, T, Q > | mat3x4_cast (tdualquat< T, Q > const &x) |
Converts a quaternion to a 3 * 4 matrix. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL tdualquat< T, Q > | normalize (tdualquat< T, Q > const &q) |
Returns the normalized quaternion. More... | |
Include <glm/gtx/dual_quaternion.hpp> to use the features of this extension.
Defines a templated dual-quaternion type and several dual-quaternion operations.
typedef highp_ddualquat ddualquat |
Dual-quaternion of default double-qualifier floating-point numbers.
Definition at line 258 of file dual_quaternion.hpp.
typedef highp_fdualquat dualquat |
Dual-quaternion of floating-point numbers.
Definition at line 234 of file dual_quaternion.hpp.
typedef highp_fdualquat fdualquat |
Dual-quaternion of single-qualifier floating-point numbers.
Definition at line 239 of file dual_quaternion.hpp.
typedef tdualquat<double, highp> highp_ddualquat |
Dual-quaternion of high double-qualifier floating-point numbers.
Definition at line 227 of file dual_quaternion.hpp.
typedef tdualquat<float, highp> highp_dualquat |
Dual-quaternion of high single-qualifier floating-point numbers.
Definition at line 195 of file dual_quaternion.hpp.
typedef tdualquat<float, highp> highp_fdualquat |
Dual-quaternion of high single-qualifier floating-point numbers.
Definition at line 211 of file dual_quaternion.hpp.
typedef tdualquat<double, lowp> lowp_ddualquat |
Dual-quaternion of low double-qualifier floating-point numbers.
Definition at line 217 of file dual_quaternion.hpp.
typedef tdualquat<float, lowp> lowp_dualquat |
Dual-quaternion of low single-qualifier floating-point numbers.
Definition at line 185 of file dual_quaternion.hpp.
typedef tdualquat<float, lowp> lowp_fdualquat |
Dual-quaternion of low single-qualifier floating-point numbers.
Definition at line 201 of file dual_quaternion.hpp.
typedef tdualquat<double, mediump> mediump_ddualquat |
Dual-quaternion of medium double-qualifier floating-point numbers.
Definition at line 222 of file dual_quaternion.hpp.
typedef tdualquat<float, mediump> mediump_dualquat |
Dual-quaternion of medium single-qualifier floating-point numbers.
Definition at line 190 of file dual_quaternion.hpp.
typedef tdualquat<float, mediump> mediump_fdualquat |
Dual-quaternion of medium single-qualifier floating-point numbers.
Definition at line 206 of file dual_quaternion.hpp.
GLM_FUNC_DECL tdualquat<T, Q> glm::dual_quat_identity | ( | ) |
Creates an identity dual quaternion.
GLM_FUNC_DECL tdualquat<T, Q> glm::dualquat_cast | ( | mat< 2, 4, T, Q > const & | x | ) |
Converts a 2 * 4 matrix (matrix which holds real and dual parts) to a quaternion.
GLM_FUNC_DECL tdualquat<T, Q> glm::dualquat_cast | ( | mat< 3, 4, T, Q > const & | x | ) |
Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion.
GLM_FUNC_DECL tdualquat<T, Q> glm::inverse | ( | tdualquat< T, Q > const & | q | ) |
Returns the q inverse.
GLM_FUNC_DECL tdualquat<T, Q> glm::lerp | ( | tdualquat< T, Q > const & | x, |
tdualquat< T, Q > const & | y, | ||
T const & | a | ||
) |
Returns the linear interpolation of two dual quaternion.
GLM_FUNC_DECL mat<2, 4, T, Q> glm::mat2x4_cast | ( | tdualquat< T, Q > const & | x | ) |
Converts a quaternion to a 2 * 4 matrix.
GLM_FUNC_DECL mat<3, 4, T, Q> glm::mat3x4_cast | ( | tdualquat< T, Q > const & | x | ) |
Converts a quaternion to a 3 * 4 matrix.
GLM_FUNC_DECL tdualquat<T, Q> glm::normalize | ( | tdualquat< T, Q > const & | q | ) |
Returns the normalized quaternion.