1

我需要使节点层次结构中的一个节点面向相机,或者换句话说,成为一个广告牌。对于每个节点,我将其世界矩阵和世界旋转存储为四元数。根据我对四元数的了解,我想要的操作是获取相机四元数和节点的旋转四元数之间的差异,并通过所述差异简单地旋转节点。

我的相机存储为欧拉角,所以我通过首先创建 X 轴旋转,然后是 Z 轴旋转(我没有 Y 轴旋转)并将它们相乘来构造相机四元数。

从那里它只是一些数学来获得差异并最终从中创建一个旋转矩阵,并将节点的世界矩阵与它相乘。

然而,这最终导致节点像疯子一样旋转,并且决不面向相机。

以下是相关的 JavaScript 代码:

// If there is a parent, multiply both world matrix and rotation by it
// localMatrix here is the current local matrix of the node
// rotation here is the local rotation quaternion
if (node.parent) {
    math.Mat4.multMat(node.parent.worldMatrix, localMatrix, node.worldMatrix);
    math.Quaternion.concat(node.parent.worldRotation, rotation, node.worldRotation);
} else {
    node.worldMatrix = localMatrix;
    node.worldRotation = rotation.copy();
}

// And here the mess begins
if (node.billboarded) {
    var cameraX = [];
    var cameraZ = [];
    var camera = [];

    // transform.rotation is my camera's rotation stored as 3 euler angles,
    // but I am not using the Y-axis for now
    math.Quaternion.setFromAxisAngle([1, 0, 0], transform.rotation[0], cameraX);
    math.Quaternion.setFromAxisAngle([0, 0, 1], transform.rotation[2], cameraZ);
    math.Quaternion.concat(cameraX, cameraZ, camera);

    // The current rotation on the node
    var initial = node.worldRotation.copy();

    // Need to reverse it, since the difference is camera * -initial
    math.Quaternion.conjugate(initial, initial);

    var difference = [];

    math.Quaternion.concat(camera, initial, difference);

    var rotationMatrix = [];

    math.Quaternion.toRotationMatrix4(difference, rotationMatrix);

    var finalMatrix = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];

    // pivot is the node's position, need to keep the rotation in local space
    math.Mat4.translate(finalMatrix, pivot[0], pivot[1], pivot[2]);
    math.Mat4.multMat(finalMatrix, rotationMatrix, finalMatrix);
    math.Mat4.translate(finalMatrix, -pivot[0], -pivot[1], -pivot[2]);

    // And finally actually rotate the node
    math.Mat4.multMat(node.worldMatrix, finalMatrix, node.worldMatrix);
}

我犯了一些明显的错误吗?

4

1 回答 1

0

你的假设是错误的:

我想要的操作是获取相机四元数和节点的旋转四元数之间的差异,并通过所述差异简单地旋转节点。

如果您正确执行此操作,它应该会导致您的节点面向与相机相同的方向。这与实际面对镜头有很大不同。

您需要的是找到面向世界空间中相机位置的变换。您可能会从对gluLookAt()的一些快速研究中受益。

于 2013-06-24T14:36:39.030 回答