I tried to read this article, but i didn't understand: Intersection point of two lines in 3D
Can someone give an easy example with numbers to see how intersection points of lines in 3D-Space are calculated?
Lets say, there is a line described as two vectors for the start and end position:
Line1Start = (-1, 0, -1) Line1End = (1, 0, 1)
Line2Start = (-1, 0, 1) Line2End = (1, 0, -1)
I know that on a cartesian coordinate system, the intersection point would be at (0, 0, 0). How is the formula applied in my case?