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

12 lines
164 B
Markdown

# Example 1
```python
from manim import *
class TestExample(Scene):
def construct(self):
dot = Dot()
self.add(dot)
self.wait(1)
````