# File lib/rubygame/rect.rb, line 516
        def contain?(rect)
                nself = self.normalize
                rect = Rect.new_from_object(rect).normalize!
                return (nself.left <= rect.left and rect.right <= nself.right and
                                        nself.top <= rect.top and rect.bottom <= nself.bottom)
        end