Are you sure?
Do you want to delete “Black hole” permanently? You will not be able to undo this action.
t = Square (color = ['black'])
s5 = Square (color = ['orange'] , width=500 , height=50)
s4 = Square (color = ['orange'] , width=500 , height=50)
s2 = Square (color = ['orange'] , width=50 , height=500)
s3 = Square (color = ['orange'] , width=50 , height=500)
s = Square (color = ['blue'] , width=50 , height=500)
r = Rectangle (color = ['blue'] , width=500 , height=50)
c = Circle(color=['red'] , width=100 , height=100)
with animation(duration=0.5):
c.height=1
c.width=1
r.width=500
r.height=1
s.width=1
c.color = 'black'
s.color = 'black'
r.color = 'black'
s2.width=1
s2.rotation = -20.25
s3.width=1
s3.rotation = 20.25
s4.height=1
s4.rotation = 20.25
s5.height=1
s5.rotation = -20.25