Skip to content

Commit

Permalink
Change the epsilon setting to be an offset from the plane epsilon
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Nov 18, 2024
1 parent b44276a commit 31f1c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/eu/mihosoft/vrl/v3d/Vector3d.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class Vector3d extends javax.vecmath.Vector3d{

private static String exportString = "%.16f";

private static double EXPORTEPSILON =Plane.EPSILON*10;
private static double EXPORTEPSILON =10;

/**
*
Expand Down Expand Up @@ -663,7 +663,7 @@ public static void setExportString(String exportString) {
}

public static double getEXPORTEPSILON() {
return EXPORTEPSILON;
return Plane.EPSILON*EXPORTEPSILON;
}

public static void setEXPORTEPSILON(double eXPORTEPSILON) {
Expand Down

0 comments on commit 31f1c5e

Please sign in to comment.