Setup determinant_puzzle.py in eola2

This commit is contained in:
Grant Sanderson
2018-04-02 17:49:04 -07:00
parent 8c1673d235
commit b610dbb37c
3 changed files with 13 additions and 1 deletions

View File

View File

@ -0,0 +1,12 @@
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()