manim / example_scene.py
tommy24's picture
Create example_scene.py
ff5de89 verified
raw
history blame contribute delete
168 Bytes
from manim import *
class ExampleScene(Scene):
def construct(self):
text = Text("Hello, HuggingFace!")
self.play(Write(text))
self.wait(1)