You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
306 B
13 lines
306 B
/// @ref gtx_float_normalize
|
|
|
|
#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
|
|
|