Skip to content

Commit

Permalink
Merge pull request #8 from PaulOlyslager/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
krcools authored Jul 5, 2024
2 parents 0db76e7 + 66fa8c8 commit 7dcabee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/octree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ Return an array containing the indices of values at `pos` (up to a tolerance)
"""
function find(tr::Octree, v; tol = sqrt(eps(eltype(v))))

pred = (c,s) -> fitsinbox(v, 0.0, c, s)# i didn't change it because find will get the point anyway, it only chck for its existance
pred = (c,s) -> fitsinbox(v, 0.0, c, s+tol)# i didn't change it because find will get the point anyway, it only chck for its existance
I = Int[]
for b in boxes(tr, pred)
for i in b
Expand Down

0 comments on commit 7dcabee

Please sign in to comment.