Distance to other vector, using the taxicab (L1) geometry.
other
double taxicabDistanceTo(Vector2 other) { return (x - other.x).abs() + (y - other.y).abs(); }