We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to get the result of the union of two SVG paths.
paper.setup(new paper.Size(1, 1)); const up = new paper.Path(pathString); const down = new paper.Path(pathString); paper.project.activeLayer.addChild(down); paper.project.activeLayer.addChild(up); const svg = down.unite(up, { insert: true, }); console.log(svg.pathData);
I got this
I'm not very clear on the rules for merging, even for intersect and subtract.
https://stackblitz.com/~/github.com/PPDEMOone/paper-boolean-operation-testing-snippet?file=index.ts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description/Steps to reproduce
I want to get the result of the union of two SVG paths.
I got this
I'm not very clear on the rules for merging, even for intersect and subtract.
Link to reproduction test-case
https://stackblitz.com/~/github.com/PPDEMOone/paper-boolean-operation-testing-snippet?file=index.ts
Expected result
Additional information
The text was updated successfully, but these errors were encountered: