mirror of
https://github.com/g-truc/glm.git
synced 2024-11-29 19:34:36 +00:00
Clarify quat_cast documentation, applying on pure rotation matrices #759
This commit is contained in:
parent
1d3f8a057f
commit
77acd2fe40
@ -315,7 +315,7 @@ namespace glm
|
|||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 4, T, Q> mat4_cast(tquat<T, Q> const& x);
|
GLM_FUNC_DECL mat<4, 4, T, Q> mat4_cast(tquat<T, Q> const& x);
|
||||||
|
|
||||||
/// Converts a 3 * 3 matrix to a quaternion.
|
/// Converts a pure rotation 3 * 3 matrix to a quaternion.
|
||||||
///
|
///
|
||||||
/// @tparam T Floating-point scalar types.
|
/// @tparam T Floating-point scalar types.
|
||||||
///
|
///
|
||||||
@ -323,7 +323,7 @@ namespace glm
|
|||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL tquat<T, Q> quat_cast(mat<3, 3, T, Q> const& x);
|
GLM_FUNC_DECL tquat<T, Q> quat_cast(mat<3, 3, T, Q> const& x);
|
||||||
|
|
||||||
/// Converts a 4 * 4 matrix to a quaternion.
|
/// Converts a pure rotation 4 * 4 matrix to a quaternion.
|
||||||
///
|
///
|
||||||
/// @tparam T Floating-point scalar types.
|
/// @tparam T Floating-point scalar types.
|
||||||
///
|
///
|
||||||
|
@ -90,7 +90,8 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
|
|||||||
- Added support of -Weverything with Clang #646
|
- Added support of -Weverything with Clang #646
|
||||||
- Improved exponential funtion test coverage
|
- Improved exponential funtion test coverage
|
||||||
- Enabled warnings as error with Clang unit tests
|
- Enabled warnings as error with Clang unit tests
|
||||||
- Canan package is an external repository: https://github.com/bincrafters/conan-glm
|
- Conan package is an external repository: https://github.com/bincrafters/conan-glm
|
||||||
|
- Clarify quat_cast documentation, applying on pure rotation matrices #759
|
||||||
|
|
||||||
#### Fixes:
|
#### Fixes:
|
||||||
- Removed doxygen references to GTC_half_float which was removed in 0.9.4
|
- Removed doxygen references to GTC_half_float which was removed in 0.9.4
|
||||||
|
Loading…
Reference in New Issue
Block a user