Created by 40223128
以及
以及
還有
也在研習創造力、表達力與協同力
還有
還有
教學主題
各學員必須完成
OnShape 零件繪製
OnShape 零件組立 組立
Inline math equations go in like so: ω=dϕ/dt. Display math should get its own line and be put in in double-dollarsigns:
I=∫ρR2dV
以下利用 Markdown 格式展示 Python 程式碼:
# use threading and subprocess to threading the make process
import os
import subprocess
import threading
def domake():
path = "../exposed/api/exposed"
ubuntu = "../Ubuntu"
# create obj path
if not os.path.exists(path+"/../obj"):
os.makedirs(path+"/../obj")
subprocess.call(["make", "clean"], cwd=path)
subprocess.call("make", cwd=path)
subprocess.call(["cp", "{libslvs.so, _slvs.so, slvs.py}", ubuntu], cwd=path)
subprocess.call(["python3", "circle_ex.py"], cwd=path+"/"+ubuntu)
make = threading.Thread(target=domake)
make.start()