AgaHackTools.Example.Shared.Math.Vector2.Length C# (CSharp) Method

Length() public method

Returns the length of this Vector2
public Length ( ) : float
return float
        public float Length()
        {
            return (float)System.Math.Sqrt(System.Math.Pow(X, 2) + System.Math.Pow(Y, 2));
        }