From cae0923a932b0ea7aa2ff1d3134657feec66d533 Mon Sep 17 00:00:00 2001 From: Trammell Hudson Date: Mon, 16 Feb 2015 15:00:26 -0500 Subject: [PATCH] increase eps --- stl_3d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl_3d.c b/stl_3d.c index 1d39e6d..08ce731 100644 --- a/stl_3d.c +++ b/stl_3d.c @@ -121,7 +121,7 @@ stl_angle( ); //int check = -EPS < dot && dot < +EPS; - int check = -1 < dot && dot < +1; + int check = -10 < dot && dot < +10; // if the dot product is not close enough to zero, they // are not coplanar.