Beispiel #1
0
 public bool Intersects(Polygon polygon, out List <Segment2> intersections)
 {
     return(Intersection.PolygonToPolygon(this, polygon, out intersections));
 }
Beispiel #2
0
 public bool Intersects(Polygon polygon)
 {
     return(Intersection.PolygonToPolygon(this, polygon));
 }