AgaHackTools.Example.Shared.Math.Vector2.Length C# (CSharp) Метод

Length() публичный Метод

Returns the length of this Vector2
public Length ( ) : float
Результат float
        public float Length()
        {
            return (float)System.Math.Sqrt(System.Math.Pow(X, 2) + System.Math.Pow(Y, 2));
        }