summaryrefslogtreecommitdiffstats
path: root/tabor/delavnica/manim/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'tabor/delavnica/manim/example.py')
-rw-r--r--tabor/delavnica/manim/example.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tabor/delavnica/manim/example.py b/tabor/delavnica/manim/example.py
new file mode 100644
index 0000000..8356367
--- /dev/null
+++ b/tabor/delavnica/manim/example.py
@@ -0,0 +1,19 @@
+
+from manim import *
+# or: from manimlib import *
+from manim_slides import Slide
+
+class BasicExample(Slide):
+ def construct(self):
+ circle = Circle(radius=3, color=BLUE)
+ dot = Dot()
+
+ self.play(GrowFromCenter(circle))
+ self.next_slide() # Waits user to press continue to go to the next slide
+
+ self.start_loop() # Start loop
+ self.play(MoveAlongPath(dot, circle), run_time=2, rate_func=linear)
+ self.end_loop() # This will loop until user inputs a key
+
+ self.play(dot.animate.move_to(ORIGIN))
+ self.next_slide() # Waits user to press continue to go to the next slide