mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
Merge branch 'boolean-debug' into remove-resolve-crossings
This commit is contained in:
commit
8b094926be
1 changed files with 5 additions and 2 deletions
|
@ -855,6 +855,7 @@ PathItem.inject(new function() {
|
|||
nx1 = inter && inter._next,
|
||||
nx2 = nx1 && nx1._next,
|
||||
nx3 = nx2 && nx2._next,
|
||||
wind = seg._winding,
|
||||
intersections = {
|
||||
'ix': inter,
|
||||
'nx¹': nx1,
|
||||
|
@ -862,7 +863,9 @@ PathItem.inject(new function() {
|
|||
'nx³': nx3
|
||||
};
|
||||
if (windingOnly) {
|
||||
label += (seg._winding && seg._winding.winding);
|
||||
if (wind) {
|
||||
label += wind.winding + ', (' + wind.windingL + ', ' + wind.windingR + ')';
|
||||
}
|
||||
} else {
|
||||
label += ' id: ' + path._id + '.' + seg._index
|
||||
+ (other ? ' -> ' + other._path._id + '.' + other._index
|
||||
|
@ -871,7 +874,7 @@ PathItem.inject(new function() {
|
|||
+ ' pt: ' + seg._point
|
||||
+ ' vd: ' + (isValid(seg) || starts && isStart(seg))
|
||||
+ ' ov: ' + !!(inter && inter.hasOverlap())
|
||||
+ ' wi: ' + (seg._winding && seg._winding.winding);
|
||||
+ ' wi: ' + (wind && wind.winding);
|
||||
for (var key in intersections) {
|
||||
var ix = intersections[key],
|
||||
s = ix && ix._segment;
|
||||
|
|
Loading…
Reference in a new issue