# pygame.Rect(left,top,width,height)
# pygame.Rect.copy() 復制矩形
# pygame.Rect.move() 移動矩形區域,接受一個列表參數
# pygame.Rect.move_ip() 移動矩形(無返回)
# pygame.Rect.inflate() 增大或縮小矩形大小
# pygame.Rect.clamp() 將矩形移到另一個矩形內
# pygame.Rect.union() 返回一個兩個矩形合并后的矩形。
# pygame.Rect.fit() 按縱橫比調整矩形的大小或移動矩形。
# pygame.Rect.contains() 測試一個矩形是否在另一個矩形內
# pygame.Rect.collidepoint() 測試點是否在矩形內
# pygame.Rect.colliderect() 測試兩個矩形是否重疊
# x,y 表示矩形距離 x、y 軸的距離
# top, left, bottom, right #在坐標系內描述矩形的大小
# topleft, bottomleft, topright, bottomright #返回一個描述矩形大小的元組
# midtop, midleft, midbottom, midright #返回一個描述矩形大小的元組
# center, centerx, centery #(centerx,centery)表示矩形中央坐標(x,y)的值
# size, width, height
# w,h #用于描述矩形的width、height