BoringHeroes.Extenders.Distance2D C# (CSharp) Метод

Distance2D() публичный статический Метод

public static Distance2D ( this one, AForge two ) : double
one this
two AForge
Результат double
        public static double Distance2D(this AForge.Point one, AForge.Point two)
        {
            return Distance2D(new Point((int) one.X, (int) one.Y), new Point((int) two.X, (int) two.Y));
        }

Same methods

Extenders::Distance2D ( this a, Point b ) : double
Extenders