扫码一下
查看教程更方便
atan2() 方法将直角坐标 (x, y) 转换为极坐标 (r, theta) 并返回 theta。
double atan2(double y, double x)
此方法从极坐标 (r, theta) 返回 theta。
public class Main { public static void main(String args[]) { double x = 45.0; double y = 30.0; System.out.println( Math.atan2(x, y) ); } }
上面示例编译运行结果如下
0.982793723247329