Doc review

This commit is contained in:
RonaldoCMP 2021-06-23 15:34:46 +01:00
parent a429b91f4c
commit d90e22e4ca

View file

@ -2538,7 +2538,7 @@ function _closest_s3(s,eps=EPSILON) =
let( // look for the origin-facing tri closest to the origin
closest = [for(i=facing) _closest_s2(tris[i], eps) ],
dist = [for(cl=closest) norm(cl[0]) ],
nearest = min_index(dist)
nearest = min_index(dist)
)
closest[nearest];