import icons

Square(color='skyblue')
circle1 = Circle(width = 130, height=70, color='lightgreen', x=100, y=100)
circle2 = Circle(width=120, height=60, color='forestgreen', x=10, y=105)
sun = icons.Sun(width=30, height=30, color='yellow', x=98, y=4)
cloud1 = icons.Cloud(width=30, height=15, color='white', x=70, y=15)
cloud2 = icons.Cloud(width=40, height=25, color='white', x=0, y=30)
cloud3 = icons.Cloud(width=35, height=20, color='white', x=-20, y=20)
cloud4 = icons.Cloud(width=40, height=20, color='white', x=-60, y=10)

with animation(duration=60):
    sun.rotation=360
    cloud1.x=100
    cloud2.x=50
    cloud3.x=120
    cloud4.x=40

Peaceful Meadow

by GradyN

Created 3 years, 12 months ago.