diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-01-13 03:51:33 +0100 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-01-13 03:51:34 +0100 |
commit | 6f67371bb1b46579ae837d0e0c61ac1b291be743 (patch) | |
tree | 5a43692a064d84e5c5688b1b3639342555139c3c /external/include/glm/gtx/matrix_operation.hpp | |
parent | Backported to C++14 (diff) | |
download | AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar.gz AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar.bz2 AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar.lz AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar.xz AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.tar.zst AltCraft-6f67371bb1b46579ae837d0e0c61ac1b291be743.zip |
Diffstat (limited to 'external/include/glm/gtx/matrix_operation.hpp')
-rw-r--r-- | external/include/glm/gtx/matrix_operation.hpp | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/external/include/glm/gtx/matrix_operation.hpp b/external/include/glm/gtx/matrix_operation.hpp new file mode 100644 index 0000000..3192ae5 --- /dev/null +++ b/external/include/glm/gtx/matrix_operation.hpp @@ -0,0 +1,84 @@ +/// @ref gtx_matrix_operation +/// @file glm/gtx/matrix_operation.hpp +/// +/// @see core (dependence) +/// +/// @defgroup gtx_matrix_operation GLM_GTX_matrix_operation +/// @ingroup gtx +/// +/// @brief Build diagonal matrices from vectors. +/// +/// <glm/gtx/matrix_operation.hpp> need to be included to use these functionalities. + +#pragma once + +// Dependency: +#include "../glm.hpp" + +#if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) +# pragma message("GLM: GLM_GTX_matrix_operation extension included") +#endif + +namespace glm +{ + /// @addtogroup gtx_matrix_operation + /// @{ + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat2x2<T, P> diagonal2x2( + tvec2<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat2x3<T, P> diagonal2x3( + tvec2<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat2x4<T, P> diagonal2x4( + tvec2<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat3x2<T, P> diagonal3x2( + tvec2<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat3x3<T, P> diagonal3x3( + tvec3<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat3x4<T, P> diagonal3x4( + tvec3<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat4x2<T, P> diagonal4x2( + tvec2<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat4x3<T, P> diagonal4x3( + tvec3<T, P> const & v); + + //! Build a diagonal matrix. + //! From GLM_GTX_matrix_operation extension. + template <typename T, precision P> + GLM_FUNC_DECL tmat4x4<T, P> diagonal4x4( + tvec4<T, P> const & v); + + /// @} +}//namespace glm + +#include "matrix_operation.inl" |