Are you sure?
Do you want to delete “dig” permanently? You will not be able to undo this action.
Square(color = "deepskyblue", height = 40, y = 20) dig1 = Circle(color = "peru", height = 30, width = 30, y = 40) dig2 = Square(color = "peru", height = 30, width = 30, y = 55) dig3 = Circle(color = "white", height = 5, width = 3, y = 38, x = 45) dig4 = Circle(color = "white", height = 5, width = 3, y = 38, x = 55) dig5 = Circle(height = 4, width = 3, y = 39, x = 45) dig6 = Circle(height = 4, width = 3, y = 39, x = 55) dig7 = Ellipse(color = "purple", height = 6, width = 10, y = 45) Square(color = "green", height = 80, y = 80) with animation(duration = 1): dig1.y = 30 dig2.y = 45 dig3.y = 28 dig4.y = 28 dig5.y = 29 dig6.y = 29 dig7.y = 35 with animation(duration = .05): dig3.height = 0 dig4.height = 0 dig5.height = 0 dig6.height = 0 with animation(duration = .04): dig3.height = 5 dig4.height = 5 dig5.height = 4 dig6.height = 4 with animation(duration = 2): pass with animation(duration = 1): dig1.y = 40 dig2.y = 55 dig3.y = 38 dig4.y = 38 dig5.y = 39 dig6.y = 39 dig7.y = 45 with animation(duration = 1): pass