static public RectI2 GetEnlarged(this RectI2 item, VectorI2 min_adjust, VectorI2 max_adjust) { return(item.GetAdjusted(-min_adjust, max_adjust)); }
static public RectI2 GetShifted(this RectI2 item, VectorI2 amount) { return(item.GetAdjusted(amount, amount)); }