static Rectangle rectangleUnion(Rectangle a, Rectangle b) { ret a == null ? b : b == null ? a : a.union(b); }