Accord.DoublePoint.EuclideanNorm C# (CSharp) Метод

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

Calculate Euclidean norm of the vector comprised of the point's coordinates - distance from (0, 0) in other words.
public EuclideanNorm ( ) : double
Результат double
        public double EuclideanNorm()
        {
            return System.Math.Sqrt(X * X + Y * Y);
        }
    }