0.0.6 • Published 5 months ago

clipper2-lib-js v0.0.6

Weekly downloads
-
License
BSL-1.0
Repository
github
Last release
5 months ago

clipper2-lib-js

https://www.npmjs.com/package/clipper2-lib-js
A Path Clipping and Offsetting library.
A port of Clipper2(C#) version 1.2.3 to js/ts.

Examples

const subj = new PathsD();
const clip = new PathsD();
subj.push([
    {x:100, y:50},
    {x:10, y:79},
    {x:65, y:2},
    {x:65, y:98},
    {x:10, y:21}
]);
clip.push(Clipper.makePathD([ 98, 63, 4, 68, 77, 8, 52, 100, 19, 12 ]));
const solution = Clipper.intersect(subj, clip, FillRule.NonZero);

clipper-2-example

Todo

  • Add build process.
  • Add tests.
  • Add comments.
  • Add demo.
  • Add benchmark.

Plan

  • TypedArray Path.

Change Log

See ChangeLog.

0.0.6

5 months ago

0.0.5

7 months ago

0.0.4

7 months ago

0.0.3

7 months ago

0.0.2

8 months ago