paperjs-offset
paperjs-offset copied to clipboard
An offset function for paperjs path
 ```javascript var p = new paper.Path({fillColor: 'rgb(191, 91, 91, 0.5)', strokeColor: 'black' }); points.forEach(([x, y]) => { p.add(new paper.Point(x+ 60, y + 200)); }) p.closed = true; //let r...
👀
When applying `offsetStroke` to Paths consisting of only straight lines it will occasionally produce end caps on the outlined shape that are "inverted". In the example below, the black line...
Hello Been trying for a while to get the lib to work with paper-jsdom, been having real troubles, managed to get it not to through errors but then i'll call...
Not sure if bad practice to open issues like this, but ... ... I just wanted to **thank you** for creating (and publishing) this! 👍 🙏 I created a small...
Thanks for the wonderful library! It's exactly what I need! For my application, I'm looking to make multiple large offsets of a single shape. Unfortunately it seems like there are...
Thanks for your effort with this package and making it available. Unfortunately I can't get offsetStroke to work. I'd like to create a fiddle, but I can't find a CDN...
Hi, man! Thank you for paperjs-offset lib, it's realy cool! I have one svg:  offset working good for this:  But offsetStroke not working: `cl.offsetStroke(10, { cap: 'round' })`...
Hi, Thanks for the great library, it's really proving to be very useful. I have noticed one of my shapes has a small difference between the native stroke and the...
I am attempting to use the offset to subtract the stroke from a rectangle but am unable to do this. Are boolean operations available?