static Rect copyRect(Rect a, Rect b) { b.x = a.x; b.y = a.y; b.w = a.w; b.h = a.h; ret b; }