Added GLM
This commit is contained in:
parent
1c008b1c9d
commit
98425f45c8
420 changed files with 62430 additions and 0 deletions
103
vendor/include/glm/gtx/matrix_operation.hpp
vendored
Normal file
103
vendor/include/glm/gtx/matrix_operation.hpp
vendored
Normal file
|
@ -0,0 +1,103 @@
|
|||
/// @ref gtx_matrix_operation
|
||||
/// @file glm/gtx/matrix_operation.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup gtx_matrix_operation GLM_GTX_matrix_operation
|
||||
/// @ingroup gtx
|
||||
///
|
||||
/// Include <glm/gtx/matrix_operation.hpp> to use the features of this extension.
|
||||
///
|
||||
/// Build diagonal matrices from vectors.
|
||||
|
||||
#pragma once
|
||||
|
||||
// Dependency:
|
||||
#include "../glm.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# ifndef GLM_ENABLE_EXPERIMENTAL
|
||||
# pragma message("GLM: GLM_GTX_matrix_operation 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.")
|
||||
# else
|
||||
# pragma message("GLM: GLM_GTX_matrix_operation extension included")
|
||||
# endif
|
||||
#endif
|
||||
|
||||
namespace glm
|
||||
{
|
||||
/// @addtogroup gtx_matrix_operation
|
||||
/// @{
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<2, 2, T, Q> diagonal2x2(
|
||||
vec<2, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<2, 3, T, Q> diagonal2x3(
|
||||
vec<2, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<2, 4, T, Q> diagonal2x4(
|
||||
vec<2, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<3, 2, T, Q> diagonal3x2(
|
||||
vec<2, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<3, 3, T, Q> diagonal3x3(
|
||||
vec<3, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<3, 4, T, Q> diagonal3x4(
|
||||
vec<3, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<4, 2, T, Q> diagonal4x2(
|
||||
vec<2, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<4, 3, T, Q> diagonal4x3(
|
||||
vec<3, T, Q> const& v);
|
||||
|
||||
//! Build a diagonal matrix.
|
||||
//! From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<4, 4, T, Q> diagonal4x4(
|
||||
vec<4, T, Q> const& v);
|
||||
|
||||
/// Build an adjugate matrix.
|
||||
/// From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<2, 2, T, Q> adjugate(mat<2, 2, T, Q> const& m);
|
||||
|
||||
/// Build an adjugate matrix.
|
||||
/// From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<3, 3, T, Q> adjugate(mat<3, 3, T, Q> const& m);
|
||||
|
||||
/// Build an adjugate matrix.
|
||||
/// From GLM_GTX_matrix_operation extension.
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_DECL mat<4, 4, T, Q> adjugate(mat<4, 4, T, Q> const& m);
|
||||
|
||||
/// @}
|
||||
}//namespace glm
|
||||
|
||||
#include "matrix_operation.inl"
|
Loading…
Add table
Add a link
Reference in a new issue