mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix: Syntax error!
This commit is contained in:
parent
f9b4321a56
commit
8434b4bebe
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ PathItem.inject(new function() {
|
|||
// We need both paths at opposit orientation for subtraction
|
||||
if (!path1Clockwise)
|
||||
path1.reverse();
|
||||
if (!(subtract ^ path2Clockwise)
|
||||
if (!(subtract ^ path2Clockwise))
|
||||
path2.reverse();
|
||||
path1Clockwise = true;
|
||||
path2Clockwise = !subtract;
|
||||
|
|
Loading…
Reference in a new issue