Added toString for Vec

This commit is contained in:
TheMode 2021-07-12 23:26:09 +02:00
parent 690b5bff57
commit 838472b6c5

View File

@ -515,6 +515,15 @@ public final class Vec implements Point {
return Objects.hash(x, y, z);
}
@Override
public String toString() {
return "Vec{" +
"x=" + x +
", y=" + y +
", z=" + z +
'}';
}
@FunctionalInterface
public interface Operator {
/**