0.9.9 API documenation
matrix_operation.hpp
Go to the documentation of this file.
1 
13 #pragma once
14 
15 // Dependency:
16 #include "../glm.hpp"
17 
18 #ifndef GLM_ENABLE_EXPERIMENTAL
19 # error "GLM: GLM_GTX_matrix_operation is an experimetal extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
20 #endif
21 
22 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
23 # pragma message("GLM: GLM_GTX_matrix_operation extension included")
24 #endif
25 
26 namespace glm
27 {
30 
33  template <typename T, precision P>
34  GLM_FUNC_DECL tmat2x2<T, P> diagonal2x2(
35  tvec2<T, P> const & v);
36 
39  template <typename T, precision P>
40  GLM_FUNC_DECL tmat2x3<T, P> diagonal2x3(
41  tvec2<T, P> const & v);
42 
45  template <typename T, precision P>
46  GLM_FUNC_DECL tmat2x4<T, P> diagonal2x4(
47  tvec2<T, P> const & v);
48 
51  template <typename T, precision P>
52  GLM_FUNC_DECL tmat3x2<T, P> diagonal3x2(
53  tvec2<T, P> const & v);
54 
57  template <typename T, precision P>
58  GLM_FUNC_DECL tmat3x3<T, P> diagonal3x3(
59  tvec3<T, P> const & v);
60 
63  template <typename T, precision P>
64  GLM_FUNC_DECL tmat3x4<T, P> diagonal3x4(
65  tvec3<T, P> const & v);
66 
69  template <typename T, precision P>
70  GLM_FUNC_DECL tmat4x2<T, P> diagonal4x2(
71  tvec2<T, P> const & v);
72 
75  template <typename T, precision P>
76  GLM_FUNC_DECL tmat4x3<T, P> diagonal4x3(
77  tvec3<T, P> const & v);
78 
81  template <typename T, precision P>
82  GLM_FUNC_DECL tmat4x4<T, P> diagonal4x4(
83  tvec4<T, P> const & v);
84 
86 }//namespace glm
87 
88 #include "matrix_operation.inl"
GLM_FUNC_DECL tmat4x4< T, P > diagonal4x4(tvec4< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat2x4< T, P > diagonal2x4(tvec2< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat3x3< T, P > diagonal3x3(tvec3< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat4x2< T, P > diagonal4x2(tvec2< T, P > const &v)
Build a diagonal matrix.
Definition: _noise.hpp:11
GLM_FUNC_DECL tmat2x3< T, P > diagonal2x3(tvec2< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat2x2< T, P > diagonal2x2(tvec2< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat3x2< T, P > diagonal3x2(tvec2< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat3x4< T, P > diagonal3x4(tvec3< T, P > const &v)
Build a diagonal matrix.
GLM_FUNC_DECL tmat4x3< T, P > diagonal4x3(tvec3< T, P > const &v)
Build a diagonal matrix.