mirror of
https://github.com/3b1b/manim.git
synced 2025-08-01 08:54:38 +08:00
Actual end to eoc5
This commit is contained in:
@ -2588,7 +2588,6 @@ class DerivativeOfNaturalLog(ZoomedScene):
|
|||||||
))
|
))
|
||||||
self.dither()
|
self.dither()
|
||||||
|
|
||||||
|
|
||||||
class FinalWords(TeacherStudentsScene):
|
class FinalWords(TeacherStudentsScene):
|
||||||
def construct(self):
|
def construct(self):
|
||||||
words = TextMobject(
|
words = TextMobject(
|
||||||
@ -2681,6 +2680,26 @@ class Chapter5PatreonThanks(PatreonThanks):
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Thumbnail(AlternateExample):
|
||||||
|
def construct(self):
|
||||||
|
title = VGroup(*map(TextMobject, [
|
||||||
|
"Implicit", "Differentiation"
|
||||||
|
]))
|
||||||
|
title.arrange_submobjects(DOWN)
|
||||||
|
title.scale(3)
|
||||||
|
title.next_to(ORIGIN, UP)
|
||||||
|
|
||||||
|
for word in title:
|
||||||
|
word.add_background_rectangle()
|
||||||
|
|
||||||
|
self.add_plane()
|
||||||
|
self.draw_graph()
|
||||||
|
self.graphs.set_stroke(width = 8)
|
||||||
|
self.remove(self.formula)
|
||||||
|
|
||||||
|
|
||||||
|
self.add(title)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -94,7 +94,6 @@ def get_configuration(sys_argv):
|
|||||||
return config
|
return config
|
||||||
|
|
||||||
def handle_scene(scene, **config):
|
def handle_scene(scene, **config):
|
||||||
print config["output_name"]
|
|
||||||
output_name = config["output_name"] or str(scene)
|
output_name = config["output_name"] or str(scene)
|
||||||
if config["quiet"]:
|
if config["quiet"]:
|
||||||
curr_stdout = sys.stdout
|
curr_stdout = sys.stdout
|
||||||
|
Reference in New Issue
Block a user