gpt4 book ai didi

c++ - OpenGL 链式平移/旋转

转载 作者:行者123 更新时间:2023-11-30 03:49:07 31 4
gpt4 key购买 nike

我有一个通用的 OpenGL 3D 世界,开始时以 (0,0,0) 为中心。我基于 this code 实现了一个标准轨迹球.这将旋转实现为对当前模型 View 矩阵的小增量/转换,

// We need to apply the rotation as the last transformation.
// 1. Get the current matrix and save it.
// 2. Set the matrix to the identity matrix (clear it).
// 3. Apply the trackball rotation.
// 4. Pre-multiply it by the saved matrix.
glGetFloatv(GL_MODELVIEW_MATRIX, (GLfloat *)objectXform);
glLoadIdentity();
glRotatef(rot_angle, rotAxis.x, rotAxis.y, rotAxis.z);
glMultMatrixf((GLfloat *)objectXform);

这部分工作完美。但是后来我想实现翻译,我也在做这个作为模型 View 矩阵的小增量,

glTranslatef(-dx, -dy, 0.f);

这也按预期工作(无论世界如何旋转,平移都会随着鼠标移动,即模型在鼠标后面。

当我尝试在翻译后旋转时出现问题:我希望旋转围绕世界中心,但在用户翻译后不会发生这种情况。我试图存储绝对翻译并对其进行补偿,但显然它不起作用。我是这样做的:

// Translation part, store absolute translation
m_mouseInfo.m_fTotalTranslationX -= dx;
m_mouseInfo.m_fTotalTranslationY -= dy;
glTranslatef(-dx, -dy, 0.f);

...

// Rotation, try to apply the rotation around (0,0,0)
glGetFloatv(GL_MODELVIEW_MATRIX, (GLfloat *)objectXform);
glLoadIdentity();
// Try to compensate for the translation and do the rotation aroun (0,0,0) but won't work
glTranslatef(m_mouseInfo.m_fTotalTranslationX, m_mouseInfo.m_fTotalTranslationY, 0.f);
glRotatef(rot_angle, rotAxis.x, rotAxis.y, rotAxis.z);
glTranslatef(-m_mouseInfo.m_fTotalTranslationX, -m_mouseInfo.m_fTotalTranslationY, 0.f);
glMultMatrixf((GLfloat *)objectXform);

当我应用旋转并因此围绕原点旋转场景时,如何存储绝对平移以补偿它?

或者,换句话说,当我有累积变换时,我怎样才能只围绕原点旋转世界?

最佳答案

围绕一个点(x,y)平移,先平移(x,y),然后旋转,再平移-(x, y).

现在,如果您的世界已被 M(某个矩阵)变换,那么该变换之前的世界原点位于 M^- 1 (0,0)

假设您的世界从原始变换为 M,并且您想执行一些旋转 R,但该旋转应该围绕原始 原点,但旋转矩阵 R 表示为围绕点 (0,0) 的旋转(样式也是如此)。

然后 R' = M R M^-1 将生成一个新矩阵 R',它由 R 围绕 旋转组成原始 (0,0)。那么M' = R' M就是表示从无到有,然后做M,然后围绕原点做R的矩阵。

如果您正在对某些模型进行累积变换,只需跟踪所述变换的结果,同时修改场景。

或者,存储原始场景,而不是对其进行累积变换,始终应用 M 来获取当前场景。

关于c++ - OpenGL 链式平移/旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32745081/

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