manim/docs/source/examples/hello_example.md
2020-08-15 12:57:38 +02:00

164 B

Example 1

from manim import *

class TestExample(Scene):
    def construct(self):
        dot = Dot()
        self.add(dot)
        self.wait(1)