搜索结果
查询Tags标签: manim,共有 6条记录-
【Manim CE】常用Mobject
当前文档版本:v0.16.0.post0 VMobject继承自Mobject V的意思是向量化的,vectorized mobjectfill_color=None,fill_opacity=0.0,stroke_color=None,stroke_opacity=1.0,stroke_width=DEFAULT_STROKE_WIDTH,background_stroke_color=BLACK,background_stroke_opacity=1.0,…
2022/8/28 23:25:34 人评论 次浏览 -
【manim】学习路径1-安装篇-windows、macOS
本系列以大量实战讲解manim数学动画引擎。文档编辑器推荐:Sublime Text这里是一些manimCE版本的参考信息、网站: manimCE文档:https://docs.manim.community/en/stable/index.html latex在线编辑网站:https://www.latexlive.com/home##GitHub的manimCE站点:https://g…
2022/7/11 5:21:36 人评论 次浏览 -
manim
from manim import * #导入manim命名空间#这是一个最基本的manim结构,类名叫做BaseFrame,传入一个场景Scene,并且包含一个construct方法,传入self class BaseFrame(Scene):def construct(self):self.wait()class CreateCircle(Scene):def construct(self):circle = Ci…
2022/6/27 6:20:45 人评论 次浏览 -
manim updater animations
Scene1 创建长方体并移动:class myjob(Scene):def construct(self):box = Rectangle(stroke_color = GREEN_C, stroke_opacity = 0.7, fill_color = RED_B, fill_opacity = 0.5, height = 1, widhth = 1)self.add(box)self.play(box.animate.shift(RIGHT*2), run_time = …
2022/6/11 23:50:20 人评论 次浏览 -
manim Tex formulas
Tex用于写公式,先使用Equation Editor产生公式,然后粘贴到www.codecogs.com进行转义 插入公式使用TexMobject(),注意要在字符串前面加r防止转义 缩放对象使用scale()函数,参数代表缩放的倍数 如果要使用TextMobject()插入公式,要在开始和结束处使用$符号,如果想要使…
2022/6/8 23:21:53 人评论 次浏览 -
manim安装
首先安装Anaconda和MikTeX 随后打开Anaconda Prompt,输入conda create -n <name>,表示创建名为name的虚拟环境,随后输入conda activate manimce,表示激活虚拟环境 随后在此虚拟环境中安装python(conda install python=3.9)和ffmpeg(conda install ffmpeg),…
2022/6/7 23:21:16 人评论 次浏览