예제 #1
0
파일: Graph.cs 프로젝트: erisonliang/qizmt
		public static double GetDistance(MyPoint p1, MyPoint p2)
		{
			return Math.Sqrt(Math.Pow((p1.X - p2.X), 2) + Math.Pow((p1.Y - p2.Y), 2));
		}