You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
4.8 KiB

4 years ago
  1. ///////////////////////////////////////////////////////////////////////////////////
  2. /// OpenGL Mathematics (glm.g-truc.net)
  3. ///
  4. /// Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.net)
  5. /// Permission is hereby granted, free of charge, to any person obtaining a copy
  6. /// of this software and associated documentation files (the "Software"), to deal
  7. /// in the Software without restriction, including without limitation the rights
  8. /// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. /// copies of the Software, and to permit persons to whom the Software is
  10. /// furnished to do so, subject to the following conditions:
  11. ///
  12. /// The above copyright notice and this permission notice shall be included in
  13. /// all copies or substantial portions of the Software.
  14. ///
  15. /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. /// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. /// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. /// THE SOFTWARE.
  22. ///
  23. /// @ref gtx_matrix_major_storage
  24. /// @file glm/gtx/matrix_major_storage.hpp
  25. /// @date 2006-04-19 / 2011-06-07
  26. /// @author Christophe Riccio
  27. ///
  28. /// @see core (dependence)
  29. /// @see gtx_extented_min_max (dependence)
  30. ///
  31. /// @defgroup gtx_matrix_major_storage GLM_GTX_matrix_major_storage
  32. /// @ingroup gtx
  33. ///
  34. /// @brief Build matrices with specific matrix order, row or column
  35. ///
  36. /// <glm/gtx/matrix_major_storage.hpp> need to be included to use these functionalities.
  37. ///////////////////////////////////////////////////////////////////////////////////
  38. #ifndef GLM_GTX_matrix_major_storage
  39. #define GLM_GTX_matrix_major_storage GLM_VERSION
  40. // Dependency:
  41. #include "../glm.hpp"
  42. #if(defined(GLM_MESSAGES) && !defined(glm_ext))
  43. # pragma message("GLM: GLM_GTX_matrix_major_storage extension included")
  44. #endif
  45. namespace glm
  46. {
  47. /// @addtogroup gtx_matrix_major_storage
  48. /// @{
  49. //! Build a row major matrix from row vectors.
  50. //! From GLM_GTX_matrix_major_storage extension.
  51. template <typename T>
  52. detail::tmat2x2<T> rowMajor2(
  53. detail::tvec2<T> const & v1,
  54. detail::tvec2<T> const & v2);
  55. //! Build a row major matrix from other matrix.
  56. //! From GLM_GTX_matrix_major_storage extension.
  57. template <typename T>
  58. detail::tmat2x2<T> rowMajor2(
  59. detail::tmat2x2<T> const & m);
  60. //! Build a row major matrix from row vectors.
  61. //! From GLM_GTX_matrix_major_storage extension.
  62. template <typename T>
  63. detail::tmat3x3<T> rowMajor3(
  64. detail::tvec3<T> const & v1,
  65. detail::tvec3<T> const & v2,
  66. detail::tvec3<T> const & v3);
  67. //! Build a row major matrix from other matrix.
  68. //! From GLM_GTX_matrix_major_storage extension.
  69. template <typename T>
  70. detail::tmat3x3<T> rowMajor3(
  71. detail::tmat3x3<T> const & m);
  72. //! Build a row major matrix from row vectors.
  73. //! From GLM_GTX_matrix_major_storage extension.
  74. template <typename T>
  75. detail::tmat4x4<T> rowMajor4(
  76. detail::tvec4<T> const & v1,
  77. detail::tvec4<T> const & v2,
  78. detail::tvec4<T> const & v3,
  79. detail::tvec4<T> const & v4);
  80. //! Build a row major matrix from other matrix.
  81. //! From GLM_GTX_matrix_major_storage extension.
  82. template <typename T>
  83. detail::tmat4x4<T> rowMajor4(
  84. detail::tmat4x4<T> const & m);
  85. //! Build a column major matrix from column vectors.
  86. //! From GLM_GTX_matrix_major_storage extension.
  87. template <typename T>
  88. detail::tmat2x2<T> colMajor2(
  89. detail::tvec2<T> const & v1,
  90. detail::tvec2<T> const & v2);
  91. //! Build a column major matrix from other matrix.
  92. //! From GLM_GTX_matrix_major_storage extension.
  93. template <typename T>
  94. detail::tmat2x2<T> colMajor2(
  95. detail::tmat2x2<T> const & m);
  96. //! Build a column major matrix from column vectors.
  97. //! From GLM_GTX_matrix_major_storage extension.
  98. template <typename T>
  99. detail::tmat3x3<T> colMajor3(
  100. detail::tvec3<T> const & v1,
  101. detail::tvec3<T> const & v2,
  102. detail::tvec3<T> const & v3);
  103. //! Build a column major matrix from other matrix.
  104. //! From GLM_GTX_matrix_major_storage extension.
  105. template <typename T>
  106. detail::tmat3x3<T> colMajor3(
  107. detail::tmat3x3<T> const & m);
  108. //! Build a column major matrix from column vectors.
  109. //! From GLM_GTX_matrix_major_storage extension.
  110. template <typename T>
  111. detail::tmat4x4<T> colMajor4(
  112. detail::tvec4<T> const & v1,
  113. detail::tvec4<T> const & v2,
  114. detail::tvec4<T> const & v3,
  115. detail::tvec4<T> const & v4);
  116. //! Build a column major matrix from other matrix.
  117. //! From GLM_GTX_matrix_major_storage extension.
  118. template <typename T>
  119. detail::tmat4x4<T> colMajor4(
  120. detail::tmat4x4<T> const & m);
  121. /// @}
  122. }//namespace glm
  123. #include "matrix_major_storage.inl"
  124. #endif//GLM_GTX_matrix_major_storage