mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Revert "Avoid all intersections as starting points for boolean paths."
This reverts commit 9590578339
.
This commit is contained in:
parent
c45ae4b51a
commit
514e6651e6
1 changed files with 3 additions and 3 deletions
|
@ -677,9 +677,9 @@ PathItem.inject(new function() {
|
|||
var seg = segments[i],
|
||||
path = null,
|
||||
finished = false;
|
||||
// Do not start a chain with segments that have intersections,
|
||||
// segments that are already visited, or that are invalid.
|
||||
if (seg._intersection || !isValid(seg))
|
||||
// Do not start a chain with segments that have multiple
|
||||
// intersections or invalid segments.
|
||||
if (seg._intersection && seg._intersection._next || !isValid(seg))
|
||||
continue;
|
||||
start = otherStart = null;
|
||||
while (!finished) {
|
||||
|
|
Loading…
Reference in a new issue