旋转角度

 function rotateArrow(event : Event) : void
{
    var dx:Number=mouseX - arrow.x; 
    var dy:Number=mouseY - arrow.y; 
    var radians:Number=Math.atan2(dy,dx); 
    arrow.rotation=radians * 180 / Math.PI;
}
posted on 2012-12-03 20:22  橙小风  阅读(160)  评论(0编辑  收藏  举报