mirror of
https://github.com/3b1b/manim.git
synced 2025-07-31 05:52:34 +08:00
Actual end to eoc5
This commit is contained in:
@ -2588,7 +2588,6 @@ class DerivativeOfNaturalLog(ZoomedScene):
|
||||
))
|
||||
self.dither()
|
||||
|
||||
|
||||
class FinalWords(TeacherStudentsScene):
|
||||
def construct(self):
|
||||
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
|
||||
|
||||
def handle_scene(scene, **config):
|
||||
print config["output_name"]
|
||||
output_name = config["output_name"] or str(scene)
|
||||
if config["quiet"]:
|
||||
curr_stdout = sys.stdout
|
||||
|
Reference in New Issue
Block a user