mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix accidental variable leackage.
This commit is contained in:
parent
7061bc0e0a
commit
857e27e3a8
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ PathItem.inject(new function() {
|
|||
// contribution for the curve-chain starting with this segment. Once we
|
||||
// have enough confidence in the winding contribution, we can propagate
|
||||
// it until the next intersection or end of a curve chain.
|
||||
var epsilon = /*#=*/Numerical.GEOMETRIC_EPSILON;
|
||||
var epsilon = /*#=*/Numerical.GEOMETRIC_EPSILON,
|
||||
chain = [],
|
||||
start = segment,
|
||||
totalLength = 0,
|
||||
|
|
Loading…
Reference in a new issue