#概要
manimの作法、調べてみた。
ShowIncreasingSubsets、使ってみた。
#サンプルコード
from manimlib.imports import *
class test(Scene):
def construct(self):
points = []
for x in range(-5, 6):
points.append(Dot(point = np.array([x, 0.0, 0.0])))
group = VGroup(*points)
self.play(ShowIncreasingSubsets(group, run_time = 3.0))
self.remove(group)
self.wait()
#生成した動画
以上。