matrix_decompose.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /// @ref gtx_matrix_decompose
  2. /// @file glm/gtx/matrix_decompose.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtx_matrix_decompose GLM_GTX_matrix_decompose
  7. /// @ingroup gtx
  8. ///
  9. /// Include <glm/gtx/matrix_decompose.hpp> to use the features of this extension.
  10. ///
  11. /// Decomposes a model matrix to translations, rotation and scale components
  12. #pragma once
  13. // Dependencies
  14. #include "../mat4x4.hpp"
  15. #include "../vec3.hpp"
  16. #include "../vec4.hpp"
  17. #include "../geometric.hpp"
  18. #include "../gtc/quaternion.hpp"
  19. #include "../gtc/matrix_transform.hpp"
  20. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  21. # ifndef GLM_ENABLE_EXPERIMENTAL
  22. # pragma message("GLM: GLM_GTX_matrix_decompose is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
  23. # else
  24. # pragma message("GLM: GLM_GTX_matrix_decompose extension included")
  25. # endif
  26. #endif
  27. namespace glm
  28. {
  29. /// @addtogroup gtx_matrix_decompose
  30. /// @{
  31. /// Decomposes a model matrix to translations, rotation and scale components
  32. /// @see gtx_matrix_decompose
  33. template<typename T, qualifier Q>
  34. GLM_FUNC_DECL bool decompose(
  35. mat<4, 4, T, Q> const& modelMatrix,
  36. vec<3, T, Q> & scale, qua<T, Q> & orientation, vec<3, T, Q> & translation, vec<3, T, Q> & skew, vec<4, T, Q> & perspective);
  37. /// @}
  38. }//namespace glm
  39. #include "matrix_decompose.inl"