mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
15 lines
386 B
Python
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()
|