from kandinsky import * from random import randint from math import * from time import sleep t = 5 w, h = 1 + 320 // t, 1 + 222 // t COUL = (220,) * 3, (0,) * 3 c = 0 def rect(x, y, n, c): for i in range(3): for j in range(3): coul = i + 3 * j if i + 3 * j < n % 10 else 10 fill_rect(3 * t * x + t * i, 3 * t * y + t * j, t, t, (25 * coul,)*3) v = .1 while True: for x in range(w): for y in range(h): n = 3 * x + y * v + v + x*x/10 rect(x, y, n, c) c = 1 - c v += .1 v %= 100 sleep(.2)