static AABB copy(AABB out, AABB a) { out.left = a.left; out.top = a.top; out.right = a.right; out.bottom = a.bottom; return out; }