We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb1ba2 commit a60682bCopy full SHA for a60682b
src/main/java/eu/mihosoft/vrl/v3d/Vector3d.java
@@ -432,7 +432,11 @@ public String toString() {
432
public boolean equals(Object obj) {
433
if(this==obj)
434
return true;
435
+// if(Vertex.class.isInstance(obj)) {
436
+// return equals(((Vertex)obj).pos);
437
+// }
438
if (!Vector3d.class.isInstance(obj)) {
439
+ System.err.println("Test fail, "+obj.getClass()+" is not a Vector3d");
440
return false;
441
}
442
return test((Vector3d)obj,Plane.getEPSILON());
0 commit comments