예제 #1
0
파일: Point2D.cs 프로젝트: GelyaTh/l222
        public double getDistance(Point2D OtherPoint)
        {
            double distance = Sqrt(Pow((x - OtherPoint.getTrueX()), 2) + Pow((y - OtherPoint.getTrueY()), 2));

            return(distance);
        }