制作数学视频时,各类几何图形是使用最频繁的。
一般来说,常用的几何图形包括:点,线,圆以及多边形。
点是最简单图形,也是其他所有图形的基础。
绘制其他任何图形时,都是用点来定位的。
manim
中生成一个点很方便,只要给定一个坐标即可。
这里的坐标包含 [x, y, z]
3个维度,如果绘制二维图形,将第三个坐标 z
固定为 0
。
class DotSample(Scene):
def construct(self):
# 绘制 9个点
for x in range(-1, 2):
for y in range(1, -2, -1):
p = Dot([x, y, 0])
self.play(Create(p), run_time=0.5)
按照 3x3
的格式绘制9个点
manim -p .\samples.py DotSample
manim
的线其实都是线段,绘制线只要提供两个点的坐标。
提供任意2个点,manim
通过 Line
来绘制线。
class LineSample(Scene):
def construct(self):
self._lines()
def _lines(self):
# 绘制 3 条线
l = Line([-1, 1, 0], [1, 1, 0])
self.play(Create(l), run_time=0.5)
l = Line([-1, 0, 0], [1, 0, 0])
self.play(Create(l), run_time=0.5)
l = Line([-1, -1, 0], [1, -1, 0])
self.play(Create(l), run_time=0.5)
运行效果:
绘制带箭头的线同样只要提供2个点。
只是绘制的对象不用 Line
,而是用 Arrow
。
class LineSample(Scene):
def construct(self):
self._arrows()
def _arrows(self):
a = Arrow([-1, 1, 0], [1, 1, 0])
self.play(Create(a), run_time=0.5)
a = Arrow([-1, 0, 0], [1, 0, 0])
self.play(Create(a), run_time=0.5)
a = Arrow([-1, -1, 0], [1, -1, 0])
self.play(Create(a), run_time=0.5)
运行效果:
绘制虚线使用 DashedLine
。
class LineSample(Scene):
def construct(self):
self._dashedLines()
self.wait()
def _dashedLines(self):
dl = DashedLine([-1, 1, 0], [1, 1, 0])
self.play(Create(dl), run_time=0.5)
dl = DashedLine([-1, 0, 0], [1, 0, 0])
self.play(Create(dl), run_time=0.5)
dl = DashedLine([-1, -1, 0], [1, -1, 0])
self.play(Create(dl), run_time=0.5)
运行效果:
绘制圆只要提供半径即可,圆心默认在屏幕的中心。
绘制圆使用 Circle
。
class CircleSample(Scene):
def construct(self):
self._circles()
self.wait()
def _circles(self):
c = Circle(radius=1)
self.play(Create(c), run_time=0.5)
c = Circle(radius=2)
self.play(Create(c), run_time=0.5)
c = Circle(radius=3)
self.play(Create(c), run_time=0.5)
运行效果:
manim
也支持绘制椭圆,使用 Ellipse
。
绘制椭圆的两个参数 width
和 height
分别控制椭圆最大宽度和最大高度。
class CircleSample(Scene):
def construct(self):
self._ellipses()
self.wait()
def _ellipses(self):
e = Ellipse(width=1, height=0.5)
self.play(Create(e), run_time=0.5)
e = Ellipse(width=2, height=1)
self.play(Create(e), run_time=0.5)
e = Ellipse(width=3, height=1.5)
self.play(Create(e), run_time=0.5)
运行效果:
manim
中绘制圆弧主要有三个参数:
class CircleSample(Scene):
def construct(self):
self._arcs()
self.wait()
def _arcs(self):
# 90度圆弧,半径1
a = Arc(angle=PI / 2, radius=1)
self.play(Create(a), run_time=0.5)
# 180度圆弧,半径2
a = Arc(angle=PI, radius=2)
self.play(Create(a), run_time=0.5)
# 30度圆弧,半径2,从270度开始绘制
a = Arc(angle=PI / 6, start_angle=PI * 1.5, radius=2)
self.play(Create(a), run_time=0.5)
运行效果:
如果制作几何相关的数学视频,那么多边形绝对是使用最多的。
manim
对多边形的支持非常完善,常用的主要以下几种:
manim
中专门有绘制等边三角形的对象 Triangle
。
class PolygonSample(Scene):
def construct(self):
self._triangles()
self.wait()
def _triangles(self):
t = Triangle()
self.play(Create(t))
运行效果:
四边形比三角形应用的更广,所以 manim
也提供了更多绘制四边形的方法。
绘制正方形主要有一个参数,就是 side_length
(正方形的边长)。
class PolygonSample(Scene):
def construct(self):
self._squares()
self.wait()
def _squares(self):
s = Square(side_length=1)
self.play(Create(s), run_time=0.5)
s = Square(side_length=1.5)
self.play(Create(s), run_time=0.5)
s = Square(side_length=2)
self.play(Create(s), run_time=0.5)
运行效果:
绘制矩形有两个主要的参数,分别代表矩形的高 height
和宽 width
。
class PolygonSample(Scene):
def construct(self):
self._rectangles()
self.wait()
def _rectangles(self):
r = Rectangle(width=1.5, height=1)
self.play(Create(r), run_time=0.5)
r = Rectangle(width=2, height=1.5)
self.play(Create(r), run_time=0.5)
r = Rectangle(width=3, height=2)
self.play(Create(r), run_time=0.5)
运行效果:
圆角矩形和矩形相比,多了一个参数corner_radius
用来控制矩形四个角的弧度半径,
也就是控制矩形四个角的圆滑程度。
class PolygonSample(Scene):
def construct(self):
self._rounded_rectangles()
self.wait()
def _rounded_rectangles(self):
r = RoundedRectangle(corner_radius=0.2, width=1.5, height=1)
self.play(Create(r), run_time=0.5)
r = RoundedRectangle(corner_radius=0.4, width=2, height=1.5)
self.play(Create(r), run_time=0.5)
r = RoundedRectangle(corner_radius=0.6, width=3, height=2)
self.play(Create(r), run_time=0.5)
运行效果:
除了三角形和四边形,manim
还提供了一个通用的Polygon
对象,它会依次连接传入的坐标点列表,绘制任意多边形。
class PolygonSample(Scene):
def construct(self):
self._polygons()
self.wait()
def _polygons(self):
p = Polygon([-3, 1, 0], [-1, 1, 0], [-2, -1, 0])
self.play(Create(p), run_time=0.5)
p = Polygon([1, 1, 0], [2, 0, 0], [3, 1, 0], [3, -1, 0], [1, -1, 0])
self.play(Create(p), run_time=0.5)
运行效果:
虽然 manim
提供了绘制任意多边形的对象 Polygon
,利用Polygon
绘制正多边形理论上是完全可行的。
不过,要自己去计算各个正多边形的坐标点显然有些费时费力,
所以,manim
中还提供了一个专门用来绘制正多边形的对象 RegularPolygon
.
class PolygonSample(Scene):
def construct(self):
self._reguler_polygons()
self.wait()
def _reguler_polygons(self):
p1 = RegularPolygon(n=6) # 正六边形
p2 = RegularPolygon(n=8) # 正八边形
p3 = RegularPolygon(n=10) # 正十边形
vg = VGroup(p1, p2, p3)
vg.arrange(RIGHT, buff=SMALL_BUFF)
self.play(Create(vg))
运行效果:
本篇主要介绍了平面几何中,使用 manim
绘制各种基本图形的方法。
本文关联的微信视频号短视频: