Exemple #1
0
 public static double Distance(Polygon polygon, Line line)
 {
     return(LineWithPolygon.Distance(line, polygon));
 }
Exemple #2
0
 public static List <RealPoint> GetCrossingPoints(Polygon polygon, Line line)
 {
     return(LineWithPolygon.GetCrossingPoints(line, polygon));
 }
Exemple #3
0
 public static bool Cross(Polygon polygon, Line line)
 {
     return(LineWithPolygon.Cross(line, polygon));
 }