Moving points around a line

1 Ansicht (letzte 30 Tage)
Doina Gumeniuc
Doina Gumeniuc am 29 Okt. 2017
Bearbeitet: Roger Stafford am 30 Okt. 2017
Hi dear users, I have a following question: There are some points (3 coordinates each) which form a center line. I have other points which form a shape and I would like to transfer this coordinates along the line mentioned previously. How can I do this with matlab? Thank you!
  1 Kommentar
Rik
Rik am 29 Okt. 2017
Have a read here and here. It will greatly improve your chances of getting an answer.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Roger Stafford
Roger Stafford am 29 Okt. 2017
Bearbeitet: Roger Stafford am 30 Okt. 2017
I assume that by “to transfer this coordinates along the line” you mean you wish to project each such point in the “shape” orthogonally onto the given center line.
Suppose two points along your “center” line are P1 = [x1,y1,z1] and P2 = [x2,y2,z2], and suppose Q1 = [x3,y3,z3] is a point on your shape. Its orthogonal projection, Q2, onto the line P1P2 is given by:
Q2 = P1 + dot(P2-P1,Q1-P1)/dot(P2-P1,P2-P1)*(P2-P1);
('Orthogonal' means that the line Q2Q1 will be perpendicular to line P2P1.)

Kategorien

Mehr zu Computational Geometry finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by