00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_orthonormalize
00014 #define glm_gtx_orthonormalize
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTX_orthonormalize extension included")
00021 #endif
00022
00023 namespace glm{
00024 namespace gtx{
00025 namespace orthonormalize
00026 {
00029
00032 template <typename T>
00033 detail::tmat3x3<T> orthonormalize(
00034 const detail::tmat3x3<T>& m);
00035
00038 template <typename T>
00039 detail::tvec3<T> orthonormalize(
00040 const detail::tvec3<T>& x,
00041 const detail::tvec3<T>& y);
00042
00044 }
00045 }
00046 }
00047
00048 #include "orthonormalize.inl"
00049
00050 namespace glm{using namespace gtx::orthonormalize;}
00051
00052 #endif//glm_gtx_orthonormalize