Calculate the normalize product of two vectors
float normalize(float x)
vec2 normalize(vec2 x)
vec3 normalize(vec3 x)
vec4 normalize(vec4 x)
v
specifies the vector to normalize.
normalize()
returns a vector with the same direction as its parameter, v, but with length 1.