mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Setup determinant_puzzle.py in eola2
This commit is contained in:
parent
8c1673d235
commit
b610dbb37c
3 changed files with 13 additions and 1 deletions
0
active_projects/eola2/__init__.py
Normal file
0
active_projects/eola2/__init__.py
Normal file
12
active_projects/eola2/determinant_puzzle.py
Normal file
12
active_projects/eola2/determinant_puzzle.py
Normal 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()
|
|
@ -320,7 +320,7 @@ class LinearTransformationScene(VectorScene):
|
|||
|
||||
def add_foreground_mobject(self, *mobjects):
|
||||
self.add_special_mobjects(self.foreground_mobjects, *mobjects)
|
||||
|
||||
|
||||
def add_transformable_mobject(self, *mobjects):
|
||||
self.add_special_mobjects(self.transformable_mobjects, *mobjects)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue