gpt4 book ai didi

c++ - 欧拉角到四元数然后四元数到欧拉角

转载 作者:IT老高 更新时间:2023-10-28 21:36:49 35 4
gpt4 key购买 nike

我正在使用 lib glm ( http://glm.g-truc.net/ ) 测试四元数,但我遇到了问题;当我将欧拉角转换为四元数然后立即将四元数转换为欧拉角时,我的结果与我最初的欧拉角完全不同。这是正常的吗?会不会是轮换不是交际的?

代码测试:

#include <glm\quaternion.hpp>
#include <math.h>

#define PI M_PI
#define RADTODEG(x) ( (x) * 180.0 / PI )
#define DEGTORAD(x) ( (x) * PI / 180.0 )

int main( void )
{
float RotX = 90.f;
float RotY = 180.f;
float RotZ = -270.f;

if ( RotX || RotY || RotZ )
{
std::cout << "Init: x= " << RotX << ", y= " << RotY << ", z= " << RotZ << "\n";
glm::quat key_quat(glm::detail::tvec3<float>(DEGTORAD( RotX ),
DEGTORAD( RotY ),
DEGTORAD( RotZ )));
glm::detail::tvec3<float> v = glm::eulerAngles(key_quat);

/* // the result is even worse with this code here
RotX = RADTODEG(v.x);
RotY = RADTODEG(v.y);
RotZ = RADTODEG(v.z);
*/

RotX = v.x;
RotY = v.y;
RotZ = v.z;

std::cout << "Final: x= " << RotX << ", y= " << RotY << ", z= " << RotZ << "\n";
}
return (0);
}

结果:

Init: x= 90, y= 180, z= -270
Final: x= -90, y= -3.41509e-006, z= -90

提前谢谢你o/

最佳答案

是的,这很正常。 There are 2 ways用欧拉角表示相同的旋转。

我个人不喜欢欧拉角,they mess up the stability of your app.我会避开他们。另外,他们是not very handy要么。

关于c++ - 欧拉角到四元数然后四元数到欧拉角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11103683/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com