ActionScript 3 沿角度移动点
例子
假设您具有要移动的角度,并且要移动具有x和y值的对象:
var position:Point = new Point(10, 10); var angle:Number = 1.25;
您可以使用以下方法沿x轴移动Math.cos:
position.x += Math.cos(angle);
和y轴一起Math.sin:
position.y += Math.sin(angle);
当然,你可以乘结果Math.cos和Math.sin通过的距离要行程:
var distance:int = 20; position.x += Math.cos(angle) * distance; position.y += Math.sin(angle) * distance;
注意:输入角度必须以弧度为单位。