Esempio n. 1
0
 internal List <Polygon> Difference(Polygon other)
 {
     return(ClipperUtility.Execute(this, other, ClipType.ctDifference));
 }
Esempio n. 2
0
 internal List <Polygon> Intersection(Polygon other)
 {
     return(ClipperUtility.Execute(this, other, ClipType.ctIntersection));
 }