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