Example #1
0
 /// <summary>
 /// Returns a new vector equal to the normalized version of this one.
 /// </summary>
 /// <returns>
 /// A new vector representing the normalized vector.
 /// </returns>
 public Vector Normalized()
 {
     Vector ret = new Vector(this);
     ret.Normalize();
     return ret;
 }