gpt4 book ai didi

java - 如何根据方向 vector 计算旋转矩阵?

转载 作者:太空宇宙 更新时间:2023-11-04 13:26:51 26 4
gpt4 key购买 nike

在我的 3D 世界实现中,我使用方向 vector (单位 vector )来决定我的 3D 对象的方向。

每个 3D 对象都有自己的方向 vector ,默认情况下方向为 V3(1, 0, 0),原点为 V3(0,0,0)。

这就是我应用定向旋转矩阵“D”的方式(矩阵“A”用于将 3D 对象围绕其方向 vector 作为轴旋转,这似乎工作正常):

Model3D model = actor.model;
// Loops through all the edges in the model
for (int i = 0; i < model.edges.length; i++) {
M3 D = directionMatrix(actor);
M3 R = rotationMatrix(actor);
// Draws a line based on each edge in the model.
// Each line consists of two points a and b.
// The matrix R rotates the points around a given axis.
// The D matrix rotates the points towards a given axis - not around it.
S.drawLine(g,
D.mul(R.mul(model.points[model.edges[i].a])).scale(actor.scale),
D.mul(R.mul(model.points[model.edges[i].b])).scale(actor.scale)
);
}

这就是我计算当前定向旋转矩阵“D”的方式:

public M3 directionalRotationMatrix(c_Actor3D actor) {
double x = Math.atan2(actor.direction.z, actor.direction.y);
double y = Math.atan2(actor.direction.x, actor.direction.z);
double z = Math.atan2(actor.direction.y, actor.direction.x);
double sin_x = Math.sin(x), sin_y = Math.sin(y), sin_z = Math.sin(z);
double cos_x = Math.cos(x), cos_y = Math.cos(y), cos_z = Math.cos(z);
return new M3(
cos_x * cos_y, (cos_x * sin_y * sin_z) - (sin_x * cos_z),
(cos_x * sin_y * cos_z) + (sin_x * sin_z), sin_x * cos_y, (sin_x * sin_y * sin_z) + (cos_x * cos_z),
(sin_x * sin_y * cos_z) - (cos_x * sin_z), -sin_y, cos_y * sin_z, cos_y * cos_z);
}

我的问题是创建正确的定向旋转矩阵,使 3D 对象沿其各自方向 vector 的方向旋转。

我完全不确定我做错了什么......我的想法是先将立方体朝一个方向旋转,然后围绕该方向的轴旋转立方体。毕竟位置转换等。

谢谢大家的帮助!

最佳答案

听起来您正试图将 3D 对象沿其前向 vector 的方向移动。为此,您需要对象的位置 (x,y,z) 和 3 个 vector (向前、向上和向右)。您可以使用基于俯仰偏航和滚动的 vector 数学来旋转 3 个 vector (参见下面的链接)。对于向前运动,然后将对象的位置加上速度乘以向前 vector ,即:位置 += 速度 * 向前

使用此处发布的以下完整示例代码来了解如何实现您自己的版本。 http://cs.lmu.edu/~ray/notes/flightsimulator/

关于java - 如何根据方向 vector 计算旋转矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33044417/

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