Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan DeKraker committed Jan 27, 2025
1 parent 6b240c0 commit c6ae773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hippunfold/workflow/scripts/gen_isosurface.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def compute_geodesic_distances(vertices, faces, source_indices):

# keep vertices that are in a nice coordinate range
epsilon - snakemake.params.coords_epsilon
good_v = np.where(np.logical_and(coord_at_V < (1-epsilon), coord_at_V > epsilon))[0]
good_v = np.where(np.logical_and(coord_at_V < (1 - epsilon), coord_at_V > epsilon))[0]

# morphological open
maxdist = compute_geodesic_distances(points, faces, good_v)
Expand Down

0 comments on commit c6ae773

Please sign in to comment.