Abulafia
Results
1
comments of
Abulafia
# Bug 3 ``` class Test(Scene): def construct(self): r1 = Rectangle(width=2, height=2, color=BLUE, fill_color=BLUE, fill_opacity=1) r2 = Square(side_length=0.5, color=RED, fill_color=RED, fill_opacity=1).move_to(r1.get_edge_center(RIGHT)) self.add(r1, r2) self.play( Succession( ApplyMethod(r2.set_fill, YELLOW, run_time=2), ApplyMethod(r1.set_fill, GREEN,...