我建议将鼠标位置存储在您最初在视图中单击的位置。计算鼠标在窗口坐标中的移动量。运动的距离必须映射到一个角度。旋转轴垂直(法线)于鼠标移动的方向。结果是类似于此WebGL 演示的对象的旋转。
将当前鼠标位置存储在startRotation
. 注意存储未归一化向量的位置鼠标位置的坐标:
// xy normalized device coordinates:
float ndcX = 2.0f * xPos / context->getWidth() - 1.0f;
float ndcY = 1.0 - 2.0f * yPos / context->getHeight();
startVector = QVector3D(ndcX, ndcY, 0.0);
获取当前位置updateRotation
:
// xy normalized device coordinates:
float ndcX = 2.0f * xPos / context->getWidth() - 1.0f;
float ndcY = 1.0 - 2.0f * yPos / context->getHeight();
endVector = QVector3D(ndcX, ndcY, 0.0);
计算从开始位置到结束位置的向量:
QVector3D direction = endVector - startVector;
旋转轴垂直于运动方向:
rotationAxis = QVector3D(-direction.y(), direction.x(), 0.0).normalized();
请注意,即使 的类型direction
是QVector3D
,它仍然是一个二维向量。它是视口 XY 平面中的一个向量,表示鼠标在视口上的移动。z 坐标为 0。二维向量(x, y)可以逆时针旋转 90 度(-y, x)。
方向矢量的长度表示旋转角度。鼠标在整个屏幕上移动会产生一个长度为2.0的向量。因此,如果在整个屏幕上拖动会导致完全旋转,则向量的长度必须乘以PI。如果应该执行半旋转,那么通过PI/2:
angle = (float)qRadiansToDegrees(direction.length() * 3.141593);
最后,必须将新旋转应用于现有旋转而不是模型:
QMatrix4x4 addRotation;
addRotation.rotate(angle, rotationAxis.x(), rotationAxis.y(), rotationAxis.z());
rotation = addRotation * rotation;
方法的最终代码清单startRotation
和updateRotation
:
void ArcBall::startRotation(int xPos, int yPos) {
// xy normalized device coordinates:
float ndcX = 2.0f * xPos / context->getWidth() - 1.0f;
float ndcY = 1.0 - 2.0f * yPos / context->getHeight();
startVector = QVector3D(ndcX, ndcY, 0.0);
endVector = startVector;
rotating = true;
}
void ArcBall::updateRotation(int xPos, int yPos) {
// xy normalized device coordinates:
float ndcX = 2.0f * xPos / context->getWidth() - 1.0f;
float ndcY = 1.0 - 2.0f * yPos / context->getHeight();
endVector = QVector3D(ndcX, ndcY, 0.0);
QVector3D direction = endVector - startVector;
rotationAxis = QVector3D(-direction.y(), direction.x(), 0.0).normalized();
angle = (float)qRadiansToDegrees(direction.length() * 3.141593);
QMatrix4x4 addRotation;
addRotation.rotate(angle, rotationAxis.x(), rotationAxis.y(), rotationAxis.z());
rotation = addRotation * rotation;
startVector = endVector;
}
如果您想要围绕对象的向上轴旋转并且沿着视图空间 x 轴倾斜对象,那么计算是不同的。首先应用绕 y 轴(向上向量)的旋转矩阵,然后应用当前视图矩阵,最后应用 x 轴上的旋转:
view-matrix = rotate-X * view-matrix * rotate-Y
函数更新轮换必须如下所示:
void ArcBall::updateRotation(int xPos, int yPos) {
// xy normalized device coordinates:
float ndcX = 2.0f * xPos / context->getWidth() - 1.0f;
float ndcY = 1.0 - 2.0f * yPos / context->getHeight();
endVector = QVector3D(ndcX, ndcY, 0.0);
QVector3D direction = endVector - startVector;
float angleY = (float)qRadiansToDegrees(-direction.x() * 3.141593);
float angleX = (float)qRadiansToDegrees(-direction.y() * 3.141593);
QMatrix4x4 rotationX;
rotationX.rotate(angleX, 1.0f 0.0f, 0.0f);
QMatrix4x4 rotationUp;
rotationX.rotate(angleY, 0.0f 1.0f, 0.0f);
rotation = rotationX * rotation * rotationUp;
startVector = endVector;
}