コード例 #1
0
ファイル: PolygonWithRealPoint.cs プロジェクト: Omybot/GoBot
 public static double Distance(Polygon polygon, RealPoint point)
 {
     return(RealPointWithPolygon.Distance(point, polygon));
 }
コード例 #2
0
ファイル: PolygonWithRealPoint.cs プロジェクト: Omybot/GoBot
 public static List <RealPoint> GetCrossingPoints(Polygon polygon, RealPoint point)
 {
     return(RealPointWithPolygon.GetCrossingPoints(point, polygon));
 }
コード例 #3
0
ファイル: PolygonWithRealPoint.cs プロジェクト: Omybot/GoBot
 public static bool Cross(Polygon polygon, RealPoint point)
 {
     return(RealPointWithPolygon.Cross(point, polygon));
 }