Skip to content

Commit

Permalink
Merge pull request Deep-MI#125 from Deep-MI/fix-spherical_project
Browse files Browse the repository at this point in the history
Fixed SyntaxError for use_cholmod argument
  • Loading branch information
LeHenschel committed Mar 22, 2022
2 parents 289f886 + cb5307f commit 1560994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recon_surf/spherically_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def spherically_project_surface(insurf, outsurf, use_cholmod=True):
takes path to insurf, spherically projects it, outputs it to outsurf
"""
surf = read_geometry(insurf, read_metadata=True)
projected = tria_spherical_project(TriaMesh(surf[0], surf[1]), flow_iter=3, use_cholmod)
projected = tria_spherical_project(TriaMesh(surf[0], surf[1]), flow_iter=3, use_cholmod=use_cholmod)
fs.write_geometry(outsurf, projected.v, projected.t, volume_info=surf[2])


Expand Down

0 comments on commit 1560994

Please sign in to comment.