#概要
manimの作法、調べてみた。
TextMobject、使ってみた。
#参考にしたページ。
#サンプルコード
from manimlib.imports import *
class test(Scene):
def construct(self):
for x in range(9):
for y in range(9):
A = TextMobject("{} x {} = {}".format(x + 1, y + 1, (x + 1) * (y + 1))).scale(3)
self.play(ShowCreation(A))
self.wait()
self.remove(A)
#生成した動画
以上。