I am having two Vectors (X,Y,Z), one above Y=0
and one below Y=0
.
I want to find the Vector (X,Y,Z) where the line between the two original vectors intersects with the Y=0
level.
How do I do that?
Example Point A:
X = -43.54235
Y = 95.2679138
Z = -98.2120361
Example Point B:
X = -43.54235
Y = 97.23531
Z = -96.24464
These points read from two UnProjections from a users click and I'm trying to target the unprojection to Y=0
.
(I found 3D line plane intersection, with simple plane but didn't understand the accepted answer as it's for 2D)