From cf25ced1910a869162dd686a93736b9f596aff4b Mon Sep 17 00:00:00 2001 From: Kevin Harrington Date: Sun, 15 Dec 2024 09:44:07 -0500 Subject: [PATCH] setting both the plane and export epsilons --- src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java b/src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java index df9f22be..a7f6954b 100644 --- a/src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java +++ b/src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java @@ -13,7 +13,7 @@ public class StlExportTest { @Test public void makeBadSTL() throws IOException { Plane.setEPSILON(1.0e-12); - Vector3d.setEXPORTEPSILON(1.0e-11); + Vector3d.setEXPORTEPSILON(1.0e-9); CSG.setUseGPU(false); CSG.setPreventNonManifoldTriangles(true); CSG badExport2 = CSG.text(" A QUICK BROWN FOX JUMPS OVER THE LAZY DOG", 10,30,"Serif Regular").movey(30);