mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-29 10:02:11 +00:00
12 lines
164 B
Markdown
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)
|
|
````
|
|
|