From dc24f0eaf4e664356a72e65407fd6ceec5a302c7 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 15 Mar 2017 15:41:08 -0700 Subject: [PATCH] Actual end to eoc5 --- eoc/chapter5.py | 21 ++++++++++++++++++++- extract_scene.py | 1 - 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/eoc/chapter5.py b/eoc/chapter5.py index 58851263..568f6ff3 100644 --- a/eoc/chapter5.py +++ b/eoc/chapter5.py @@ -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) + diff --git a/extract_scene.py b/extract_scene.py index 139541ed..763d1fb1 100644 --- a/extract_scene.py +++ b/extract_scene.py @@ -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