Releases: idormenco/PolyBool.Net
Releases · idormenco/PolyBool.Net
Make library support more .net versions
Fixed issue with SegmentChainer
V1.5.1
Install-Package Polybool.Net -Version 1.5.1
Added overloads to the logical operations to work directly with polygons.
var p1 = new Polygon(...
var p2 = new Polygon(...
Polygon unified = SegmentSelector.Union(p1, p2);
Polygon unified = SegmentSelector.Intersect(p1, p2);
Polygon unified = SegmentSelector.Difference(p1, p2);
Polygon unified = SegmentSelector.DifferenceRev(p1, p2);
Polygon unified = SegmentSelector.Xor(p1, p2);