summaryrefslogtreecommitdiff
path: root/glm-master/glm/gtx/matrix_operation.hpp
diff options
context:
space:
mode:
authorjjesswan <jessica_wan@brown.edu>2024-05-07 06:03:03 -0400
committerjjesswan <jessica_wan@brown.edu>2024-05-07 06:03:03 -0400
commit675391d07f50d0067e7bab983433c6d86f5f8256 (patch)
tree65a857125b91502974bceb40e24c1c7eff4bad59 /glm-master/glm/gtx/matrix_operation.hpp
parent6a45579dbbf991c0e12ce59958e3b533d19fc9d4 (diff)
remove glm
Diffstat (limited to 'glm-master/glm/gtx/matrix_operation.hpp')
-rw-r--r--glm-master/glm/gtx/matrix_operation.hpp103
1 files changed, 0 insertions, 103 deletions
diff --git a/glm-master/glm/gtx/matrix_operation.hpp b/glm-master/glm/gtx/matrix_operation.hpp
deleted file mode 100644
index de6ff1f..0000000
--- a/glm-master/glm/gtx/matrix_operation.hpp
+++ /dev/null
@@ -1,103 +0,0 @@
-/// @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"