Files
manim/active_projects/eola2/determinant_puzzle.py
2018-04-02 17:49:04 -07:00

13 lines
338 B
Python

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()