-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslides.py
42 lines (31 loc) · 1.06 KB
/
slides.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from manim import *
from manim_slides import Slide
class Introduction(Slide):
def construct(self):
welcome = Text("This is the Manim Slides starter")
square = Square(color=BLUE)
dot = Dot(color=RED).shift(RIGHT + UP)
self.play(FadeIn(welcome))
self.next_slide()
self.wipe(welcome, square)
self.play(FadeIn(dot))
self.next_slide(loop=True)
self.play(
MoveAlongPath(dot, square, rate_func=linear), run_time=2
)
class WithTeX(Slide):
def construct(self):
tex, text = VGroup(
Tex(r"You can also use \TeX, e.g., $\cos\theta=1$"),
Text("which does not render like plain text"),
).arrange(DOWN)
self.play(FadeIn(tex))
self.next_slide()
self.play(FadeIn(text, shift=DOWN))
class Outro(Slide):
def construct(self):
learn_more = VGroup(
Text("Learn more about Manim Slides:"),
Text("https://manim-slides.eertmans.be"),
).arrange(DOWN)
self.play(FadeIn(learn_more))