下麵是Math atan2()方法的示例。
- 例:當y坐標大於x坐標時:
<script type="text/javascript"> document.write(Math.atan2(90, 15)); </script>
- 輸出:
1.4056476493802699
Math.atan2()方法用於返回其參數商的反正切。 Math.atan2()方法返回-Π和Π之間的數值,表示(x,y)點和正x軸的角度theta。這是正X軸與點(x,y)之間的逆時針角度(以弧度為單位)。
用法:
Math.atan2(value1, value2)
參數:此方法接受上麵提到和下麵描述的兩個參數:
- value1:此參數表示y坐標。
- value2:表示點(x,y)的x坐標。
返回值:它返回其參數商的反正切值。
以下示例說明了JavaScript中的Mathe atan2()方法:
- 範例1:
Input:Math.atan2(90, 15); Output:1.4056476493802699
- 範例2:
Input:Math.atan2(15, 90); Output:0.16514867741462683
上述方法的更多代碼如下:
程序1:當y坐標小於x坐標時
<script type="text/javascript">
document.write(Math.atan2(15, 90));
</script>
輸出:
0.16514867741462683
程序2:當y坐標與x坐標相同時
<script type="text/javascript">
document.write(Math.atan2(90, 90));
</script>
輸出:
0.7853981633974483
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- PHP atan2( )用法及代碼示例
- p5.js atan2()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math atan2() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。