I need to translate the coordinates of four points in 3d reference frame A (P1, P2, P3, P4) given their distances from four other points in reference frame B (Q1, Q2, Q3, Q4);
So I have distances |P1Q1|, |P2Q2|, |P3Q3|, and |P4Q4| and the xyz coordinates of all P points in the A frame and all Q points in the B frame:
How can I determine the transformation matrix to translate P coordinates to the B reference frame?
This is a similar question as in this thread: Get position of a point with known distance between other points but with four distances between eight different points.