Skip to content

Releases: idormenco/PolyBool.Net

Make library support more .net versions

01 Jul 10:41
b5ae06f
Compare
Choose a tag to compare

Fixed issue with SegmentChainer

19 Jan 17:19
Compare
Choose a tag to compare

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);