Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan DeKraker committed Jan 22, 2025
1 parent bdcb64f commit 5b0b99c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hippunfold/workflow/scripts/laplace-beltrami.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,13 @@ def solve_laplace_beltrami_open_mesh(vertices, faces, boundary_conditions=None):

APinds = np.array(np.where(boundary_values < 12)[0]).astype(int)
boundary_conditions = dict(zip(boundary_vertices[APinds], boundary_values[APinds] - 10))
APcoords = np.ones((len(vertices_orig)))*np.nan
APcoords = np.ones((len(vertices_orig))) * np.nan
APcoords[i_concomp] = solve_laplace_beltrami_open_mesh(
vertices, faces, boundary_conditions
)
PDinds = np.array(np.where(boundary_values > 12)[0]).astype(int)
boundary_conditions = dict(zip(boundary_vertices[PDinds], boundary_values[PDinds] - 20))
PDcoords = np.ones((len(vertices_orig)))*np.nan
PDcoords = np.ones((len(vertices_orig))) * np.nan
PDcoords[i_concomp] = solve_laplace_beltrami_open_mesh(
vertices, faces, boundary_conditions
)
Expand Down

0 comments on commit 5b0b99c

Please sign in to comment.