mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Double GEOMETRIC_EPSILON to cover the last found edge case.
See https://github.com/paperjs/paper.js/issues/784#issuecomment-168614053
This commit is contained in:
parent
88634d4d3d
commit
daaf625ebd
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ var Numerical = new function() {
|
|||
* The epsilon to be used when performing "geometric" checks, such as
|
||||
* distances between points and lines.
|
||||
*/
|
||||
GEOMETRIC_EPSILON: 2e-7,
|
||||
GEOMETRIC_EPSILON: 4e-7,
|
||||
/**
|
||||
* The epsilon to be used when performing winding contribution checks.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue