Ruby Math atan2()函数
atan2() 是Ruby中的一个内置函数,用于返回 (y/x) 的角度反值,其中y是y坐标的比例,x是x坐标的比例。数值介于-pi和+pi之间,代表 (x,y) 点与正x轴的角度 theta 。它是正X轴与点 ( x ,y) 之间的逆时针角度,以弧度计算 。
语法 :Math.atan2(y, x)
参数 :该函数接受 x 和 y 坐标。
返回值 :它返回一个介于-pi和+pi之间的数值,代表 (x,y) 点与正X轴之间的角度theta。
例子 1 :
#Ruby program for atan2() function
#Assigning values
y1 = 10 x1 = 10
y2
= 15 x2 = 10
#Prints the atan2() value
puts Math.atan2(y1, x1)
puts Math.atan2(y2, x2)
输出:
0.7853981633974483
0.982793723247329
例2 :
#Ruby program for atan2() function
#Assigning values
y1 = 10 x1 = 5
y2
= 29 x2 = 17
#Prints the atan2() value
puts Math.atan2(y1, x1)
puts Math.atan2(y2, x2)
输出:
1.1071487177940904
1.0405805540182667
参考资料 : https://devdocs.io/ruby~2.5/math#method-c-atan2Ruby