No description
Find a file
2022-12-04 20:39:01 +01:00
.github/workflows Fix #1 numeric_limits is not a member of std 2022-12-04 20:39:01 +01:00
src Fix #1 numeric_limits is not a member of std 2022-12-04 20:39:01 +01:00
tests Fix #1 numeric_limits is not a member of std 2022-12-04 20:39:01 +01:00
clipper2.nimble Fix #1 numeric_limits is not a member of std 2022-12-04 20:39:01 +01:00
LICENSE Initial commit 2022-08-19 13:29:53 +02:00
README.MD Initial commit 2022-08-19 13:29:53 +02:00

Clipper2

Nim bindings for Clipper2: A Polygon Clipping and Offsetting library from Angus Johnson.

Documentation

Extensive HTML documentation

Examples

var subject, clip: Paths64
subject.add MakePath("100, 50, 10, 79, 65, 2, 65, 98, 10, 21")
clip.add MakePath("98, 63, 4, 68, 77, 8, 52, 100, 19, 12")
let solution = Intersect(subject, clip, frNonZero)

clipperB