A normalized vector is a vector whose length is equal to one, otherwise known as a unit vector. To convert a vector into a unit vector, get the normalization factor by calling the Normalize function, then divide each of the vector's x, y, and z coordinates by that factor.
Normalize
cVector3f vBaseVector(2.0, 5.0, 3.0); float fNormFactor = vBaseVector.Normalize(); cVector3f vNormalizedVector(vBaseVector.x / fNormFactor, vBaseVector.y / fNormFactor, vBaseVector.z / fNormFactor);