3b1b-manim/active_projects/clacks/solution2/simple_scenes.py
2019-01-30 11:25:48 -08:00

15 lines
386 B
Python

from big_ol_pile_of_manim_imports import *
class LastVideoWrapper(Scene):
def construct(self):
title = TextMobject("Last time...")
title.scale(1.5)
title.to_edge(UP)
rect = ScreenRectangle(height=6)
rect.next_to(title, DOWN)
self.play(
FadeInFromDown(title),
ShowCreation(rect)
)
self.wait()