mirror of
https://github.com/1bardesign/batteries.git
synced 2024-11-22 06:04:35 +00:00
parent
7767802433
commit
5df717fe6d
@ -90,7 +90,7 @@ function intersect.nearest_point_on_line(a_start, a_end, b_pos, into)
|
||||
--solve for factor along segment
|
||||
local point_to_start = b_pos:pooled_copy()
|
||||
:vector_sub_inplace(a_start)
|
||||
local factor = math.clamp01(point_to_start:dot(segment) / lensq)
|
||||
local factor = mathx.clamp01(point_to_start:dot(segment) / lensq)
|
||||
point_to_start:release()
|
||||
into:set(segment)
|
||||
:scalar_mul_inplace(factor)
|
||||
|
Loading…
Reference in New Issue
Block a user