Skip to content

Commit

Permalink
setting both the plane and export epsilons
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Dec 15, 2024
1 parent a6da0ff commit cf25ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/eu/mihosoft/vrl/v3d/StlExportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cf25ced

Please sign in to comment.