I checked manim's method. I tried using TextMobject.
https://qiita.com/maskot1977/items/c01180cc63aa67ac004e
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)
https://www.youtube.com/watch?v=p_5P6au5kYQ
that's all.
Recommended Posts