Are you sure?
Do you want to delete “testing variable” permanently? You will not be able to undo this action.
Rectangle(color="green")
circle = Circle(width=5, height=5, color="white")
grow = 10
with animation(duration=2):
circle.width = grow
circle.height = grow
circle.color = "white"
circle1 = Circle(width=65, height=65, color="white")
grow1 = 20
with animation(duration=2):
circle1.width = grow1
circle1.height = grow1
circle1.color = "red"