How to find intersection points of multiple line segments in 3D?

2 views (last 30 days)
Hi! I wanted to randomly plot multiple line segments in 3D and find the intersection points of the line segments, if any

Answers (1)

Matt J
Matt J on 26 Jun 2022
Edited: Matt J on 26 Jun 2022
If you generate them randomly, they will not intersect. However, generatig and plotting them is no problem,
numlines=5;
for i=1:numlines
line(rand(2,1),rand(2,1), rand(2,1)); hold on
end
hold off; view(3)
xlabel X, ylabel Y, zlabel Z

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!