from gasp import * def tom(x, y): Polygon([(x-50, y+15), (x-40, y+25), (x+10, y+15), (x-20, y+15), (x-40, y-25), (x-50, y-25), (x-32, y+15)], filled=True) Circle((x-10, y-15), 10, filled=True) Polygon([(x+40, y-5), (x+50, y-25), (x+40, y-25), (x+30, y-15), (x+30, y-25), (x+20, y-25), (x+20, y-15), (x+10, y-25), (x, y-25), (x+10, y-5), (x+20, y-5)], filled=True) begin_graphics(800, 600, title="Tom's Wallpaper", background=color.LIGHTBLUE) for row in range(50, 800, 100): for col in range(25, 600, 50): tom(row, col) update_when('key_pressed') end_graphics()