Accord.DoublePoint.SquaredDistanceTo C# (CSharp) Méthode

SquaredDistanceTo() public méthode

Calculate squared Euclidean distance between two points.
public SquaredDistanceTo ( DoublePoint anotherPoint ) : double
anotherPoint DoublePoint Point to calculate distance to.
Résultat double
        public double SquaredDistanceTo(DoublePoint anotherPoint)
        {
            double dx = X - anotherPoint.X;
            double dy = Y - anotherPoint.Y;

            return dx * dx + dy * dy;
        }