Skip to content

Commit e55fbb8

Browse files
committed
tighter testing
1 parent 953e33f commit e55fbb8

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ public boolean equals(Object obj) {
435435
if (!Vector3d.class.isInstance(obj)) {
436436
return false;
437437
}
438-
return test((Vector3d)obj,Plane.getEPSILON());
438+
return test((Vector3d)obj,Plane.getEPSILON()*100);
439439
}
440440

441441
double distance(Vector3d v) {

0 commit comments

Comments
 (0)