mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Lower geometric epsilon.
Differences slightly above 1e-8 where observed.
This commit is contained in:
parent
812ac63e60
commit
ce95043e99
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-8,
|
||||
GEOMETRIC_EPSILON: 1e-7,
|
||||
/**
|
||||
* MACHINE_EPSILON for a double precision (Javascript Number) is
|
||||
* 2.220446049250313e-16. (try this in the js console)
|
||||
|
|
Loading…
Reference in a new issue