Skip to content

Commit

Permalink
Lower geometric epsilon.
Browse files Browse the repository at this point in the history
Differences slightly above 1e-8 where observed.
  • Loading branch information
lehni committed Sep 21, 2015
1 parent 812ac63 commit ce95043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/Numerical.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ce95043

Please sign in to comment.