1.0.0 API documentation
Loading...
Searching...
No Matches
normalize_dot.hpp
Go to the documentation of this file.
1
13
14#pragma once
15
16// Dependency:
17#include "../gtx/fast_square_root.hpp"
18
19#ifndef GLM_ENABLE_EXPERIMENTAL
20# error "GLM: GLM_GTX_normalize_dot 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."
21#elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
22# pragma message("GLM: GLM_GTX_normalize_dot extension included")
23#endif
24
25namespace glm
26{
29
34 template<length_t L, typename T, qualifier Q>
35 GLM_FUNC_DECL T normalizeDot(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
36
41 template<length_t L, typename T, qualifier Q>
42 GLM_FUNC_DECL T fastNormalizeDot(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
43
45}//namespace glm
46
47#include "normalize_dot.inl"
GLM_FUNC_DECL T fastNormalizeDot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Normalize parameters and returns the dot product of x and y.
GLM_FUNC_DECL T normalizeDot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Normalize parameters and returns the dot product of x and y.