ZhangZhihui's Blog  

2026年5月22日

摘要: 学习Blender需要有绘画功底吗? 完全不需要! 这是一个非常常见的误区。 你可以把绘画和 3D 建模看作是两种完全不同的“超能力”:绘画是在 2D 平面上用线条和阴影“欺骗”眼睛,去伪造立体感;而 Blender 是在 3D 空间里直接建造实物。 现代 3D 软件的工具链非常强大,没有绘画功底完 阅读全文
posted @ 2026-05-22 22:08 ZhangZhihuiAAA 阅读(5) 评论(0) 推荐(0)

2026年5月19日

摘要: PS C:\Users\ZhangZhihui> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" downloading uv 0.11.15 (x86_64-pc-windows- 阅读全文
posted @ 2026-05-19 11:00 ZhangZhihuiAAA 阅读(4) 评论(0) 推荐(0)

2026年5月15日

摘要: class SinAndCosFunctionPlot(Scene): def construct(self): axes = Axes( x_range=[-10, 10.3, 1], y_range=[-1.5, 1.5, 1], x_length=10, axis_config={'color 阅读全文
posted @ 2026-05-15 20:04 ZhangZhihuiAAA 阅读(4) 评论(0) 推荐(0)
 
摘要: class MovingDots(Scene): def construct(self): d1, d2 = Dot(color=BLUE), Dot(color=GREEN) l1 = Line(d1, d2).set_color(RED) x, y = ValueTracker(0), Valu 阅读全文
posted @ 2026-05-15 17:29 ZhangZhihuiAAA 阅读(6) 评论(0) 推荐(0)
 
摘要: from manim import * class MovingAngle(Scene): def construct(self): rotation_center = LEFT theta_tracker = ValueTracker(110) line1 = Line(LEFT, RIGHT) 阅读全文
posted @ 2026-05-15 16:29 ZhangZhihuiAAA 阅读(6) 评论(0) 推荐(0)
 
摘要: 在 Manim 中,这两个函数虽然都能改变物体的位置,但它们的坐标参考系完全不同。简单来说:move_to 是“去哪里”,而 shift 是“走多远”。 1. move_to():绝对定位 move_to 将物体的中心(或指定的关键点)移动到一个具体的坐标点。它不关心物体当前在哪里。 逻辑:目的地 阅读全文
posted @ 2026-05-15 15:00 ZhangZhihuiAAA 阅读(4) 评论(0) 推荐(0)
 
摘要: class BraceAnnotation(Scene): def construct(self): dot = Dot([-2, -1, 0]) dot2 = Dot([2, 1, 0]) line = Line(dot.get_center(), dot2.get_center()).set_c 阅读全文
posted @ 2026-05-15 11:27 ZhangZhihuiAAA 阅读(4) 评论(0) 推荐(0)
 
摘要: 在 Manim 中,Group 和 VGroup 就像是两种不同的“集装箱”,虽然都能把多个物体打包在一起,但它们能装的东西和具备的能力完全不同。 1. 核心定义区别 VGroup (Vector Group) 这是你最常使用的类。V 代表 Vector(矢量)。 成员限制:只能包含矢量图形(VMo 阅读全文
posted @ 2026-05-15 11:18 ZhangZhihuiAAA 阅读(3) 评论(0) 推荐(0)

2026年5月14日

摘要: https://docs.manim.community/en/stable/guides/add_voiceovers.html pip install "manim-voiceover[azure,gtts]" Basic Usage Manim Voiceover lets you … Add 阅读全文
posted @ 2026-05-14 17:23 ZhangZhihuiAAA 阅读(15) 评论(0) 推荐(0)
 
摘要: https://docs.manim.community/en/stable/guides/using_text.html Changing fonts in LaTeX when typesetting mathematical formulae is trickier than regular 阅读全文
posted @ 2026-05-14 17:12 ZhangZhihuiAAA 阅读(5) 评论(0) 推荐(0)