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
Here is a simple test case that used to work, but now fails.
This bug only occurs if both of the circles exists and if the smaller circle is counter-clockwise.
var cp = new CompoundPath(); cp.addChild(new Path.Circle(100, 60, 50)); cp.addChild(new Path.Circle(100, 60, 30)); cp.addChild(new Path({segments:[ [120, 140], [150, 140], [150, 190], [120, 190]], closed:true})); cp.strokeColor = "green"; p = new Path({segments:[ [135, 200], [135, 120], [170, 120], [170, 200] ], closed:true}); p.strokeColor = "red"; var r = cp.subtract(p); r.fillColor = "rgba(255, 0, 0, .2)";
The text was updated successfully, but these errors were encountered:
Please look at my comment in #869, this may be very easy to fix.
Sorry, something went wrong.
49d24c1
Address proposal by @iconexperience in #869 and shorten code.
92904e9
Closes #877
No branches or pull requests
Here is a simple test case that used to work, but now fails.
This bug only occurs if both of the circles exists and if the smaller circle is counter-clockwise.
The text was updated successfully, but these errors were encountered: