欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript atan2() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 16次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript atan2() 方法

JavaScript Math 对象

实例

实例 1 – atan2(y,x)

指定一个坐标(x,y),坐标值(4,8),使用 atan2() 方法计算坐标与 X 轴之间的角度的弧度
,如下实例:

Math.atan2(8,4);

以上实例输出:

1.1071487177940904


定义和用法

atan2() 返回从原点(0,0) 到 (x,y) 点的线段与 x 轴正方向之间的平面角度(弧度值),也就是 Math.atan2(y,x)

注意: atan2()有两个参数, y 坐标是作为第一个参数传递, x 坐标作为第二个参数传递。


浏览器支持

所有主要浏览器都支持 atan2() 方法


语法

Math.atan2(y,x)

参数 描述
y 必须。一个数字代表Y坐标
x 必须。 一个数字代表x坐标

返回值

类型 描述
Number x 的反正切值。返回一个 -PI 到 PI 之间的数值。表示点 (x, y) 对应的偏移角度。这是一个逆时针角度,以弧度为单位,正X轴和点 (x, y) 与原点连线 之间。注意此函数接受的参数:先传递 y 坐标,然后是 x 坐标。

技术细节

JavaScript 版本: 1.0

更多实例

实例

Math.atan2(90, 15) // 1.4056476493802699
Math.atan2(15, 90) // 0.16514867741462683

Math.atan2( ±0, 0 )               // ±PI.
Math.atan2( ±0, +0 )               // ±0.
Math.atan2( ±0, x )               // ±PI for x > 0.
Math.atan2( ±0, x )                // ±0 for x > 0.
Math.atan2( y, ±0 )               // -PI/2 for y > 0.
Math.atan2( y, ±0 )                // PI/2 for y > 0.
Math.atan2( ±y, Infinity )        // ±PI for finite y > 0.
Math.atan2( ±y, +Infinity )        // ±0 for finite y > 0.
Math.atan2( ±Infinity, x )         // ±PI/2 for finite x.
Math.atan2( ±Infinity, Infinity ) // ±3*PI/4.
Math.atan2( ±Infinity, +Infinity ) // ±PI/4.


JavaScript Math 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2302.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900