Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #pragma once
00039
00040
00041 #include "../glm.hpp"
00042
00043 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
00044 # pragma message("GLM: GLM_GTX_matrix_operation extension included")
00045 #endif
00046
00047 namespace glm
00048 {
00051
00054 template <typename T, precision P>
00055 GLM_FUNC_DECL detail::tmat2x2<T, P> diagonal2x2(
00056 detail::tvec2<T, P> const & v);
00057
00060 template <typename T, precision P>
00061 GLM_FUNC_DECL detail::tmat2x3<T, P> diagonal2x3(
00062 detail::tvec2<T, P> const & v);
00063
00066 template <typename T, precision P>
00067 GLM_FUNC_DECL detail::tmat2x4<T, P> diagonal2x4(
00068 detail::tvec2<T, P> const & v);
00069
00072 template <typename T, precision P>
00073 GLM_FUNC_DECL detail::tmat3x2<T, P> diagonal3x2(
00074 detail::tvec2<T, P> const & v);
00075
00078 template <typename T, precision P>
00079 GLM_FUNC_DECL detail::tmat3x3<T, P> diagonal3x3(
00080 detail::tvec3<T, P> const & v);
00081
00084 template <typename T, precision P>
00085 GLM_FUNC_DECL detail::tmat3x4<T, P> diagonal3x4(
00086 detail::tvec3<T, P> const & v);
00087
00090 template <typename T, precision P>
00091 GLM_FUNC_DECL detail::tmat4x2<T, P> diagonal4x2(
00092 detail::tvec2<T, P> const & v);
00093
00096 template <typename T, precision P>
00097 GLM_FUNC_DECL detail::tmat4x3<T, P> diagonal4x3(
00098 detail::tvec3<T, P> const & v);
00099
00102 template <typename T, precision P>
00103 GLM_FUNC_DECL detail::tmat4x4<T, P> diagonal4x4(
00104 detail::tvec4<T, P> const & v);
00105
00107 }
00108
00109 #include "matrix_operation.inl"