How to build a quaternion from a normal vector?

조회 수: 91 (최근 30일)
Thomas Sherk
Thomas Sherk 2021년 4월 9일
편집: James Tursa 2021년 4월 9일
I have a plane and the normal vector. I want to be able to rotate points along the normal vector through some point on the plane.
I have done this before but cannot find the script, and I find the quaternion documentation somewhat dense. Just wanted to see if someone knew off the top of their head.
Thanks.
  댓글 수: 2
James Tursa
James Tursa 2021년 4월 9일
What does "through some point on the plane" mean? Certainly you can use the normal vector as the eigen-axis of the quaternion for the rotation, but I don't understand what that point on the plane has to do with it.
Thomas Sherk
Thomas Sherk 2021년 4월 9일
Sorry, I did not mean to write that. Do you know that function to call?

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2021년 4월 9일
편집: James Tursa 2021년 4월 9일
If you have the Aerospace Toolbox, you could do the following
n = 1x3 unit normal vector
a = angle to rotate in radians
v = 1x3 the vector you want to rotate
q = [cos(a/2) sin(a/2)*n]; % the quaternion used for the rotation
vnew = quatrotate(q,v);
This may do the opposite of what you want, however, depending on which direction you want to rotate. You may need to flip the sign of the angle. If you need to do this manually using conjugates and multiplies instead of using quatrotate from the Aerospace Toolbox, see this link:

카테고리

Help CenterFile Exchange에서 Quaternion Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by