Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ac5113
/
DECO
like
3
Running
on
T4
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d27f874
DECO
/
utils
/
mesh_utils.py
ac5113
added files
99a05f0
almost 2 years ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
trimesh
def
save_results_mesh
(
vertices, faces, filename
):
mesh = trimesh.Trimesh(vertices, faces, process=
False
)
mesh.export(filename)
print
(
f'save results to
{filename}
'
)