mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Added SearchSpacePerimeterVsArea
This commit is contained in:
parent
bc53abc4cb
commit
973063f9b7
1 changed files with 15 additions and 0 deletions
|
@ -2127,6 +2127,21 @@ class PathContainingZero(InputOutputScene, PiCreatureScene):
|
||||||
self.play(morty.change, "hooray")
|
self.play(morty.change, "hooray")
|
||||||
self.wait(3)
|
self.wait(3)
|
||||||
|
|
||||||
|
class BackToEquationSolving(AltTeacherStudentsScene):
|
||||||
|
def construct(self):
|
||||||
|
self.teacher_says(
|
||||||
|
"Back to solving \\\\ equations"
|
||||||
|
)
|
||||||
|
self.change_all_student_modes("hooray")
|
||||||
|
self.play(*[
|
||||||
|
ApplyMethod(pi.look_at, self.screen)
|
||||||
|
for pi in self.pi_creatures
|
||||||
|
])
|
||||||
|
self.wait(3)
|
||||||
|
|
||||||
|
class SearchSpacePerimeterVsArea(Scene):
|
||||||
|
def construct(self):
|
||||||
|
pass
|
||||||
|
|
||||||
class EndingCredits(Scene):
|
class EndingCredits(Scene):
|
||||||
def construct(self):
|
def construct(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue