Skip to content

Commit a60682b

Browse files
committed
38 open edges!
1 parent deb1ba2 commit a60682b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,11 @@ public String toString() {
432432
public boolean equals(Object obj) {
433433
if(this==obj)
434434
return true;
435+
// if(Vertex.class.isInstance(obj)) {
436+
// return equals(((Vertex)obj).pos);
437+
// }
435438
if (!Vector3d.class.isInstance(obj)) {
439+
System.err.println("Test fail, "+obj.getClass()+" is not a Vector3d");
436440
return false;
437441
}
438442
return test((Vector3d)obj,Plane.getEPSILON());

0 commit comments

Comments
 (0)