mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-08-06 17:29:45 +08:00
9 lines
193 B
Python
9 lines
193 B
Python
from manim import *
|
|
# Import modules here
|
|
|
|
class BasicScene(ThreeDScene):
|
|
|
|
def construct(self):
|
|
# Your code goes here
|
|
text = Text("Your first scene!")
|
|
self.add(text) |