gpt4 book ai didi

c - 方向、方向对象

转载 作者:行者123 更新时间:2023-11-30 17:54:21 25 4
gpt4 key购买 nike

如何根据对象的方向移动对象?我的意思是,我有一个处于某个位置的立方体,我想绕 Y 轴旋转并根据它们的方向移动。然后再次移动和旋转以改变方向。像这样的事情:

enter image description here

最佳答案

在 JS 中你可以尝试这样的事情:

var previousPosition = [x, y]; //change x and y with the coordinate of the object
var nextPosition = [x, y]; //change x and y with the new coordinate of the object

var x = previousPosition[0] - previousPosition[0];
var y = nextPosition[1] - nextPosition[1];

var rad = Math.atan(y/x);
var deg = rad * 180 / 3.14;

在变量 deg 中,您有旋转立方体的度数值

关于c - 方向、方向对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991091/

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