Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display two animations at the same time with Manim

Manim noobie here.

I am trying to run two animations at the same time, notably, I'm trying to display a dot transitioning from above ending up between two letters. Those two letters should create some space in between in the meantime. Any advice on how to do so? Warm thanks in advance.

like image 439
shannontesla Avatar asked Oct 30 '19 12:10

shannontesla


People also ask

How do you play two animations at once in manim?

To apply two transformations at the same time, you can do self. play(Transformation1, Transformation2) . This way, since the two Transformations are in the same play statement, they will run simultaneously.


1 Answers

To apply two transformations at the same time, you can do self.play(Transformation1, Transformation2). This way, since the two Transformations are in the same play statement, they will run simultaneously.

like image 129
paradox Avatar answered Sep 19 '22 03:09

paradox