Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Manim noobie 在这里。
我试图同时运行两个动画,特别是,我试图显示一个从上方过渡到两个字母之间的点。与此同时,这两个字母应该在它们之间创造一些空间。关于如何做到这一点的任何建议?提前致谢。
要同时应用两个转换,您可以执行self.play(Transformation1, Transformation2). 这样,由于两个 Transformation 在同一个 play 语句中,它们将同时运行。
self.play(Transformation1, Transformation2)