gpt4 book ai didi

javascript - 创建旋转矩阵

转载 作者:行者123 更新时间:2023-12-03 05:27:58 24 4
gpt4 key购买 nike

我需要创建一个旋转函数,用于旋转项目,它几乎与尝试执行 -sin 时不同。似乎没有一个函数允许这样做。

Rotation matrix

Matrix.createRotation = function (rotation) {

return new Matrix(Math.cos(rotation), Math.sin(rotation), 0,
Math.sin(rotation), Math.cos(rotation), 0, 0, 0, 1);
};

最佳答案

您必须将 Math.sin(rotation) 的结果求反为 -Math.sin(rotation):

Matrix.createRotation = function (rotation)
{
return new Matrix(
Math.cos(rotation), -Math.sin(rotation), 0,
Math.sin(rotation), Math.cos(rotation), 0,
0, 0, 1
);
};

请注意,-Math.sin(rotation)(-1)*Math.sin(rotation) 更快。

关于javascript - 创建旋转矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41078114/

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