static Rect growRectBottom(Rect r, int pixels) { ret new Rect(r.x, r.y, r.w, r.h+pixels); } static Rect growRectBottom(int pixels, Rect r) { ret growRectBottom(r, pixels); }