mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-08-23 18:13:02 +08:00
11 lines
195 B
Python
11 lines
195 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)
|