v1.4.0: removed a bunch more toString methods/calls that were unneeded

This commit is contained in:
Evan Debenham
2022-08-08 13:31:05 -04:00
parent 64d1b93862
commit be0125497f
17 changed files with 35 additions and 119 deletions

View File

@@ -146,11 +146,6 @@ public class PointF {
public static float angle( PointF start, PointF end ) {
return (float)Math.atan2( end.y - start.y, end.x - start.x );
}
@Override
public String toString() {
return "" + x + ", " + y;
}
@Override
public boolean equals(Object o) {