Creates a new Vector2 that is the current Vector2 translated by x and y.
x
y
Vector2 translated(double x, double y) { return Vector2(this.x + x, this.y + y); }