paperjs-offset icon indicating copy to clipboard operation
paperjs-offset copied to clipboard

An offset function for paperjs path

Results 17 paperjs-offset issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/163671/163745162-614cf3e0-f5d8-4a98-9c37-4308a032c152.png) ```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...

bug

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...

bug

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...

bug

Hi, man! Thank you for paperjs-offset lib, it's realy cool! I have one svg: ![image](https://user-images.githubusercontent.com/2574093/61618712-13cf9380-ac76-11e9-8b2a-f649546ffa9b.png) offset working good for this: ![image](https://user-images.githubusercontent.com/2574093/61618753-2d70db00-ac76-11e9-82d4-af63deb3f291.png) But offsetStroke not working: `cl.offsetStroke(10, { cap: 'round' })`...

bug

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...

bug

I am attempting to use the offset to subtract the stroke from a rectangle but am unable to do this. Are boolean operations available?