# File tile.rb, line 96
    def each 
      @x1.upto(@x2) { |x|
        @y1.upto(@y2) { |y|
          yield x,y
        }
      }
    end