Dorothydu's picture
Add files using upload-large-folder tool
e4d50d8 verified
from simplify_mesh import mesh_simplify
import numpy as np
v = np.random.rand(100, 3)
f = np.random.choice(range(100), (50, 3))
mesh_simplify(v, f, 50)