You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is very hard to understand your question, could you refer the lines of the code you read and drive it from there?
Also, your second eq doesn't seem right - R_3D.transpose() * (R_3D.transpose()*v*dt) the reference frame should match. I.e., cannot multiply the same rotation matrix R_3D.transpose() * R_3D.transpose().
It is very hard to understand your question, could you refer the lines of the code you read and drive it from there? Also, your second eq doesn't seem right - R_3D.transpose() * (R_3D.transpose()*v*dt) the reference frame should match. I.e., cannot multiply the same rotation matrix R_3D.transpose() * R_3D.transpose().
in this line:
I think
new_p
is equal to(p_3D + R_3D.transpose()*v*dt)
, then the line comes to:But it seems that the final result should be:
So I think the origin line should be the following code:
Just remove the
.transpose()
The text was updated successfully, but these errors were encountered: