datnguyentien204's picture
Upload 338 files
8e0b903 verified
raw
history blame
140 Bytes
import trimesh
def convertgtb2stl(glb_file_path,stl_file_path):
mesh = trimesh.load(glb_file_path)
mesh.export(stl_file_path)