Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tommy24
/
manim
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
manim
/
example_scene.py
tommy24
Create example_scene.py
ff5de89
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
168 Bytes
from
manim
import
*
class
ExampleScene
(
Scene
):
def
construct
(
self
):
text = Text(
"Hello, HuggingFace!"
)
self.play(Write(text))
self.wait(
1
)