mirror of
https://github.com/3b1b/manim.git
synced 2025-07-31 22:13:30 +08:00
13 lines
338 B
Python
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()
|