3b1b-manim/active_projects/eola2/determinant_puzzle.py

13 lines
338 B
Python
Raw Normal View History

2018-04-02 17:49:04 -07:00
from big_ol_pile_of_manim_imports import *
class WorkOutNumerically(Scene):
def construct(self):
pass
class SuccessiveLinearTransformations(LinearTransformationScene):
def construct(self):
self.apply_transposed_matrix([[0, 1], [1, 0]])
self.apply_transposed_matrix([[1, 1], [0, 1]])
self.wait()