Actual end to eoc5

This commit is contained in:
Grant Sanderson
2017-03-15 15:41:08 -07:00
parent c8bb0e8e86
commit dc24f0eaf4
2 changed files with 20 additions and 2 deletions

View File

@ -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)

View File

@ -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