Skip to content

Commit

Permalink
Update geometry.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-grim authored Nov 18, 2024
1 parent d502cee commit 39f4dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deep_neurographs/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def query_ball(kdtree, xyz, radius):
target coordinate.
"""
idxs = kdtree.query_ball_point(xyz, radius, return_sorted=True)
idxs = kdtree.query_ball_point(xyz, radius)
return kdtree.data[idxs]


Expand Down

0 comments on commit 39f4dd4

Please sign in to comment.