I have an array which contains 3d modeling information x, y, z coordinates for a structure rotated and placed in the desired stance. I also have a new array which has similar structure without the rotation or placement. The new structures coordinates begin at [0 0 0]. It is easy to get the first portion of the structure into the right place by adding the first element of the properly rotated array to the unstructured array. My problem now is the rotation. How do I rotate the new element so that it matches the angle in x, y and z of the properly rotated array? Thank you
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you can find three representative vectors up, front and right from the data then the rotation matrix would be:
where O = [ox oy oz] is the origin This is feasible if you know enough of the geometry of rotated structure. Why it works is seen from the interpretation of identity matrix and rotation matrix:
Conversely, if you know that your geometry contains a cube (perhaps even scaled...)
Front vector = (F-o)/|F-o|, Right = (R-o)/|R-o|, Up = (U-o)/|U-o| |
|||||||||||
|