方向,方向对象

时间:2013-02-20 22:23:33

标签: c animation

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

enter image description here

1 个答案:

答案 0 :(得分:0)

在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中,你有旋转你的立方体的度数值