CCT.NUI.Core.Vector.GetNormalizedVector C# (CSharp) Method

GetNormalizedVector() public method

public GetNormalizedVector ( ) : Vector
return Vector
        public Vector GetNormalizedVector()
        {
            var length = this.Length;
            return new Vector(this.X /= length, this.Y /= length, this.Z /= length);
        }