mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-13 16:33:28 -04:00
Make GEOMETRIC_EPSILON so that overlap edge-cases are correctly matched.
Relates to #784
This commit is contained in:
parent
9b883e5fb6
commit
4b4ccbac09
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ var Numerical = new function() {
|
|||
* collinearity. This value is somewhat arbitrary and was chosen by
|
||||
* trial and error.
|
||||
*/
|
||||
GEOMETRIC_EPSILON: 1e-7,
|
||||
GEOMETRIC_EPSILON: 1e-6,
|
||||
/**
|
||||
* The epsilon to be used when performing "trigonometric" checks, such
|
||||
* as examining cross products to check for collinearity. This value is
|
||||
|
|
Loading…
Reference in a new issue