manim
wsx_9999
这个作者很懒,什么都没留下…
展开
-
manim-arrange_submobjects的应用及LaggedStart的应用
这是example_scenes.py中的代码class example(Scene): def construct(self): title = TextMobject("This is some \\LaTeX") basel = TexMobject( "\\sum_{n=1}^\\infty " "\...原创 2019-10-21 22:49:36 · 839 阅读 · 2 评论 -
manim-利用循环创建对象
class example(Scene): def construct(self): text_list=[] text_group=VGroup() for i in range(1,13): t=str(i) text=TextMobject(t) text.move...原创 2019-10-21 22:17:38 · 592 阅读 · 1 评论 -
manim-3D场景
标题class CameraPosition4(ThreeDScene): def construct(self): axes = ThreeDAxes() circle=Circle() self.set_camera_orientation(phi=80 * DEGREES,theta=20*DEGREES,gamma=30*DEGRE...原创 2019-10-19 22:04:04 · 2655 阅读 · 4 评论 -
manim-TextMobject 换行
manim-TextMobject 换行class example(Scene): def construct(self): text=TextMobject(r'This is the first raw. \\\ And this is the second raw.') self.play(Write(text),run_time=5) ...原创 2019-10-19 21:04:59 · 1201 阅读 · 0 评论