mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Decrease GEOMETRIC_EPSILON
This appears to be better aligned with the new Curve#getParameterOf() behavior.
This commit is contained in:
parent
c1d0bd21b8
commit
c9f5c02ee4
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ var Numerical = new function() {
|
||||||
* collinearity. This value is somewhat arbitrary and was chosen by
|
* collinearity. This value is somewhat arbitrary and was chosen by
|
||||||
* trial and error.
|
* trial and error.
|
||||||
*/
|
*/
|
||||||
GEOMETRIC_EPSILON: 1e-6,
|
GEOMETRIC_EPSILON: 1e-7,
|
||||||
/**
|
/**
|
||||||
* The epsilon to be used when performing "trigonometric" checks, such
|
* The epsilon to be used when performing "trigonometric" checks, such
|
||||||
* as examining cross products to check for collinearity. This value is
|
* as examining cross products to check for collinearity. This value is
|
||||||
|
|
Loading…
Reference in a new issue