#概要
manimの作法、調べてみた。
練習問題やってみた。
#練習問題
ルービックキューブを回せ。
#サンプルコード
class test(Rubik_Scene):
CONFIG = {
'order': 3,
}
def construct(self):
self.wait()
self.rotate_rubik_anim(1, 3, 1)
self.rotate_rubik_anim(1, 1, -1)
self.rotate_rubik_anim(0, 2, 1)
self.rotate_rubik_anim(1, 3, 2)
self.rotate_rubik_anim(2, 1, -2)
self.rotate_rubik_anim([1, 2], 3, -2)
self.rotate_rubik_anim(1, 1, -1)
self.rotate_rubik_anim([2, 3], 2, 1)
self.rotate_rubik_anim(1, 3, -1)
self.wait()
self.rotate_rubik_anim(1, 3, 1)
self.rotate_rubik_anim([2, 3], 2, -1)
self.rotate_rubik_anim(1, 1, 1)
self.rotate_rubik_anim([1, 2], 3, 2)
self.rotate_rubik_anim(2, 1, 2)
self.rotate_rubik_anim(1, 3, -2)
self.rotate_rubik_anim(0, 2, -1)
self.rotate_rubik_anim(1, 1, 1)
self.rotate_rubik_anim(1, 3, -1)
self.wait()
#生成した動画
以上。