迹(Math.cos(45));//0.5253219888177297
迹(Math.cos(30));//0.15425144988758405
迹(Math.cos(35.264));//-0.7606511017750149
我糊涂了。我需要吗? 靠 </跨度> 中学的数学? 锟斤拷
因为你正在通过学位和 Math.cos() 想要弧度:
Math.cos()
trace(Math.cos(toRad(45))); //0.7071067811865476 trace(Math.cos(toRad(30))); //0.8660254037844387 trace(Math.cos(toRad(35.264))); //0.8165005076106897 function toRad($deg:Number):Number { return ($deg/180)*Math.PI; }
度 - 弧度转换