Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/cca/file/73ff328fdcea/State.py
Дата изменения: Unknown
Дата индексирования: Sun Feb 3 05:25:33 2013
Кодировка:
cca: 73ff328fdcea State.py

cca

view State.py @ 61:73ff328fdcea

A lot to do, but we want to make scroll-bars for canvas, so we should delete some parts of code and un-useful variables
author darkhan
date Tue, 07 Dec 2010 22:33:44 +0300
parents fa1a99c88a0b
children 7502b6193014
line source
1 class State(object):
3 def __init__(self, name, symbol, color, nums):
4 #name
5 #symbol
6 #color
7 #nums - next step ondition, list with numbers from 0 to 9
9 self.name = name
10 self.symbol = symbol
11 self.color = color
12 self.nums = nums
14 def next_state(self, num):
15 #num - number of cells with the same state
16 return num in self.nums
18 def __repr__(self):
19 return self.symbol + " " + self.name