# File mrplot/helpers.rb, line 230
    def extend!(border)
      @origin.x -= border.left
      @origin.y -= border.bottom
      
      @size.width   += border.left  + border.right
      @size.height  += border.top   + border.bottom
      
      return self
    end