#概要
manimの作法、調べてみた。
camera_config使ってみた。
#サンプルコード
from manimlib.imports import *
class test(Scene):
CONFIG = {
"camera_config": {
"background_color": "#ffffff"
},
}
def construct(self):
dot = Dot(color = RED).scale(30)
self.add(dot)
self.wait()
#生成した動画
以上。