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

5 Ansichten (letzte 30 Tage)
Niharika_dc
Niharika_dc am 26 Jun. 2022
Bearbeitet: Matt J am 26 Jun. 2022
Hi! I wanted to randomly plot multiple line segments in 3D and find the intersection points of the line segments, if any

Antworten (1)

Matt J
Matt J am 26 Jun. 2022
Bearbeitet: Matt J am 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!

Translated by