Rectangle()
Rectangle(width = 40, height = 40, color = 'darkslateblue', x=25, y=25)
Rectangle(width = 40, height = 40, color = 'darkslateblue', x=75, y=75)
Rectangle(width = 40, height = 40, color = 'darkslateblue', x=75, y=25)
Rectangle(width = 40, height = 40, color = 'darkslateblue', x=25, y=75)

r1 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 25, y = 20)
r2 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 37, y = 79)
r3 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 78, y = 11)
r4 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 12, y = 12)
r5 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 88, y = 65)
r6 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 65, y = 60)
r7 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 17, y = 60)
r8 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 65, y = 12)
r9 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 15, y = 15)
r10 = Ellipse(width=2, height=5, color=['blue', 'white'], x = 70, y = 60)


with animation(duration = 3):
    r1.y = 42
    r2.y = 92
    r3.y = 42
    r4.y = 42
    r5.y = 92
    r6.y = 92
    r7.y = 92
    r8.y = 42
    r9.y = 42
    r10.y = 92

Rain On a Window Pane

by gblyler

Created 4 years, 2 months ago.