Skip to content

Commit 730bb44

Browse files
committed
Cutting back the rounding
1 parent acb3b7d commit 730bb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/eu/mihosoft/vrl/v3d/Vector3d.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ public StringBuilder toObjString(StringBuilder sb) {
363363
*/
364364
private double roundToEpsilon(double value,double epsilon) {
365365
// Round to nearest multiple of epsilon
366-
return ((double)Math.round(value / epsilon)) * epsilon;
366+
return value;// ((double)Math.round(value / epsilon)) * epsilon;
367367
}
368368
private String roundedValue(double v,double ep) {
369369
return String.format(getExportString(), roundToEpsilon(v,ep));

0 commit comments

Comments
 (0)