瀏覽代碼

Minor bug fixes

master
Noëlle Anthony 8 年之前
父節點
當前提交
418d71ec17
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      CellMap.py

+ 2
- 2
CellMap.py 查看文件

""" Resets the map to its initial state, allowing the user to experiment """ Resets the map to its initial state, allowing the user to experiment
with death/birth limits and number of repetitions on a single map. with death/birth limits and number of repetitions on a single map.
""" """
self.genmap = self.initial
self.genmap = list(self.initial)


def createMap(self): def createMap(self):
""" Initializes an x by y grid. """ Initializes an x by y grid.
new_row.append(True if random.randint(1,99) <= seed else False) new_row.append(True if random.randint(1,99) <= seed else False)
new_map.append(new_row) new_map.append(new_row)
self.initial = new_map self.initial = new_map
self.genmap = self.initial
self.genmap = new_map


def smoothMap(self): def smoothMap(self):
""" Refines the grid. """ Refines the grid.

Loading…
取消
儲存