Algorithms.Point2D.DistanceTo C# (CSharp) 메소드

DistanceTo() 공개 메소드

public DistanceTo ( Point2D that ) : double
that Point2D
리턴 double
        public double DistanceTo(Point2D that) {
            return Math.Sqrt(DistanceSquaredTo(that));
        }