Spaces:
Sleeping
Sleeping
File size: 140 Bytes
8e0b903 |
1 2 3 4 5 6 |
import trimesh
def convertgtb2stl(glb_file_path,stl_file_path):
mesh = trimesh.load(glb_file_path)
mesh.export(stl_file_path)
|