0.9.9 API documenation
Users
christophericcio
Documents
Repository
Github
glm
glm
gtx
orthonormalize.hpp
Go to the documentation of this file.
1
14
#pragma once
15
16
// Dependency:
17
#include "../vec3.hpp"
18
#include "../mat3x3.hpp"
19
#include "../geometric.hpp"
20
21
#ifndef GLM_ENABLE_EXPERIMENTAL
22
# error "GLM: GLM_GTX_orthonormalize 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."
23
#endif
24
25
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
26
# pragma message("GLM: GLM_GTX_orthonormalize extension included")
27
#endif
28
29
namespace
glm
30
{
33
37
template
<
typename
T, qualifier Q>
38
GLM_FUNC_DECL mat<3, 3, T, Q>
orthonormalize
(mat<3, 3, T, Q>
const
& m);
39
43
template
<
typename
T, qualifier Q>
44
GLM_FUNC_DECL vec<3, T, Q>
orthonormalize
(vec<3, T, Q>
const
& x, vec<3, T, Q>
const
& y);
45
47
}
//namespace glm
48
49
#include "orthonormalize.inl"
glm
Definition:
common.hpp:20
glm::orthonormalize
GLM_FUNC_DECL vec< 3, T, Q > orthonormalize(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
Orthonormalizes x according y.
Generated by
1.8.14