-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.py
More file actions
23 lines (18 loc) · 1.59 KB
/
Copy pathscript.py
File metadata and controls
23 lines (18 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# import subprocess
# text = """
# ███████╗██╗ ██████╗ ██████╗ █████╗ ██╗ ██╗ ██╗███████╗███████╗ █████╗
# ██╔════╝██║ ██╔═══██╗██╔══██╗██╔══██╗ ██║ ██║███║██╔════╝╚════██║██╔══██╗
# █████╗ ██║ ██║ ██║██████╔╝███████║ ██║ ██║╚██║███████╗ ██╔╝╚██████║
# ██╔══╝ ██║ ██║ ██║██╔══██╗██╔══██║ ╚██╗ ██╔╝ ██║╚════██║ ██╔╝ ╚═══██║
# ██║ ███████╗╚██████╔╝██║ ██║██║ ██║ ╚████╔╝ ██║███████║██╗██║██╗█████╔╝
# ╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═══╝ ╚═╝╚══════╝╚═╝╚═╝╚═╝╚════╝
# """
# print(text)
# subprocess.run("npm run postinstall", shell=True, check=True)
# subprocess.run("npm run dev", shell=True, check=True)
from manim import *
class HelloScene(Scene):
def construct(self):
text = Text("Xin chào, Manim!", font_size=72)
self.play(Write(text))
self.wait(2)