ifire commited on
Commit
2343852
1 Parent(s): 06b8314

Save path.

Browse files
Files changed (1) hide show
  1. predict.py +1 -1
predict.py CHANGED
@@ -60,7 +60,7 @@ class Predictor(BasePredictor):
60
  c, _ = igl.orientable_patches(f)
61
  f, _ = igl.orient_outward(v, f, c)
62
  igl.write_triangle_mesh(file_path, v, f)
63
- file_path = self.save_as_obj(file_name)
64
  return file_path
65
 
66
 
 
60
  c, _ = igl.orientable_patches(f)
61
  f, _ = igl.orient_outward(v, f, c)
62
  igl.write_triangle_mesh(file_path, v, f)
63
+ file_path = self.save_as_obj(file_path)
64
  return file_path
65
 
66