3b1b-manim/active_projects/clacks/solution2/simple_scenes.py

16 lines
386 B
Python
Raw Normal View History

2019-01-25 11:47:55 -08:00
from big_ol_pile_of_manim_imports import *
class LastVideoWrapper(Scene):
2019-01-25 11:47:55 -08:00
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()