Groovy - atan2()
该方法将直角坐标(x,y)转换为极坐标(r,theta)并返回theta。
语法
double atan2(double y, double x)
参数
- X - 双数据类型中的 X 坐标
- Y - 双数据类型中的 Y 坐标
返回值
这个方法从极坐标(r,theta)返回theta。
示例
以下是该方法的用法示例 −
class Example { static void main(String[] args){ double x = 45.0; double y = 30.0; System.out.println( Math.atan2(x, y) ); } }
当我们运行上面的程序时,会得到下面的结果 −
0.982793723247329