Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Tk_seq_shuffle.py
- from tkinter import *
- from PIL import Image, ImageTk
- from itertools import combinations
- b2w = ((0,)*3,(255,)*3)
- b2w += b2w[::-1]
- b2w = list(b2w*125)+[(0,)*3]*500
- ww = 600
- hh = 600
- def draw():
- image.putdata(rgb)
- photo = ImageTk.PhotoImage(image)
- canvas.create_image(0,0,image=photo,anchor=NW)
- canvas.update()
- root = Tk()
- root.title("Tk_seq_shuffle")
- root.geometry("%dx%d+0+0"%(ww,hh))
- canvas = Canvas(root, width=ww, height=hh)
- canvas.pack()
- image = Image.new("RGB", (ww,hh), (255,255,255))
- i = 1
- rgb = [(0,0,0)]*(ww*hh)
- while 1:
- ttt = []
- for x in range(ww):
- i += 1
- t = b2w.pop(i%1000)
- ttt += [t]
- b2w += [t]
- rgb.extend(ttt)
- rgb = rgb[-ww*hh:]
- draw()
Add Comment
Please, Sign In to add comment