three ball auto (hopefully)

This commit is contained in:
aarav18
2022-03-24 00:30:25 -06:00
parent e1c01041d4
commit 0e556e3d07
5 changed files with 98 additions and 19 deletions
@@ -155,4 +155,8 @@ public class Vector2D extends Vector2d {
public String toString() {
return "<" + this.x + ", " + this.y + ">";
}
public double[] toDoubleArray() {
return new double[] {this.x, this.y};
}
}