# File lib/rubygame/rect.rb, line 303
        def bottomright=(bottomright)
                raise ArgumentError, "Rect#bottomright= takes an Array of form [x, y]." if bottomright.size != 2
                self.right, self.bottom = bottomright
                return bottomright
        end