1.0.2 API documentation
norm.hpp
Go to the documentation of this file.
1 
15 #pragma once
16 
17 // Dependency:
18 #include "../geometric.hpp"
19 #include "../gtx/component_wise.hpp"
20 
21 #ifndef GLM_ENABLE_EXPERIMENTAL
22 # error "GLM: GLM_GTX_norm 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 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
24 # pragma message("GLM: GLM_GTX_norm extension included")
25 #endif
26 
27 namespace glm
28 {
31 
34  template<length_t L, typename T, qualifier Q>
35  GLM_FUNC_DECL T length2(vec<L, T, Q> const& x);
36 
39  template<length_t L, typename T, qualifier Q>
40  GLM_FUNC_DECL T distance2(vec<L, T, Q> const& p0, vec<L, T, Q> const& p1);
41 
44  template<typename T, qualifier Q>
45  GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
46 
49  template<typename T, qualifier Q>
50  GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& v);
51 
54  template<typename T, qualifier Q>
55  GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
56 
59  template<typename T, qualifier Q>
60  GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x);
61 
64  template<typename T, qualifier Q>
65  GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, vec<3, T, Q> const& y, unsigned int Depth);
66 
69  template<typename T, qualifier Q>
70  GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, unsigned int Depth);
71 
74  template<typename T, qualifier Q>
75  GLM_FUNC_DECL T lMaxNorm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
76 
79  template<typename T, qualifier Q>
80  GLM_FUNC_DECL T lMaxNorm(vec<3, T, Q> const& x);
81 
83 }//namespace glm
84 
85 #include "norm.inl"
glm::lMaxNorm
GLM_FUNC_DECL T lMaxNorm(vec< 3, T, Q > const &x)
Returns the LMax norm of v.
glm::distance2
GLM_FUNC_DECL T distance2(vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
Returns the squared distance between p0 and p1, i.e., length2(p0 - p1).
glm::l1Norm
GLM_FUNC_DECL T l1Norm(vec< 3, T, Q > const &v)
Returns the L1 norm of v.
glm::length2
GLM_FUNC_DECL T length2(vec< L, T, Q > const &x)
Returns the squared length of x.
glm::l2Norm
GLM_FUNC_DECL T l2Norm(vec< 3, T, Q > const &x)
Returns the L2 norm of v.
glm::lxNorm
GLM_FUNC_DECL T lxNorm(vec< 3, T, Q > const &x, unsigned int Depth)
Returns the L norm of v.