JavaScript Math.atan2 方法
Math.atan2 方法用于取得数值的反正切值。语法如下:
Math.atan2( y,x )
提示:y 参数在 x 参数之前。
参数 | 说明 |
---|---|
y | 必需。点的 y 坐标。 |
x | 必需。点的 x 坐标。 |
返回值
返回从 X 轴正向逆时针旋转到点 (x,y) 时经过的角度(-PI 到 PI 之间的值)。
Math.atan2 方法实例
该例子取得不同点的角度:
<script language="JavaScript"> document.write( Math.atan2(1.5,1.5) + "<br />" ); document.write( Math.atan2(-1.5,-1.5) + "<br />" ); document.write( Math.atan2(5,10) + "<br />" ); document.write( Math.atan2(0,5) ); </script>
运行该例子,输出:
0.7853981633974483 -2.356194490192345 0.4636476090008061 0