blob: bceab10e42f2ed89bb7b6ec942540334c5597495 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/// @ref gtx_float_normalize
/// @file glm/gtx/float_normalize.inl
#include <limits>
namespace glm
{
template<length_t L, typename T, qualifier Q>
GLM_FUNC_QUALIFIER vec<L, float, Q> floatNormalize(vec<L, T, Q> const& v)
{
return vec<L, float, Q>(v) / static_cast<float>(std::numeric_limits<T>::max());
}
}//namespace glm
|