atan2()
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
该方法将直角坐标(x,y)转换为极坐标(r,theta)并返回θ。
语法 (Syntax)
double atan2(double y, double x)
参数 (Parameters)
这是参数的细节 -
X - X以双数据类型进行坐标。
Y - Y在双数据类型中坐标。
返回值 (Return Value)
该方法从极坐标(r,theta)返回theta。
例子 (Example)
public class Test {
public static void main(String args[]) {
double x = 45.0;
double y = 30.0;
System.out.println( Math.atan2(x, y) );
}
}
这将产生以下结果 -
输出 (Output)
0.982793723247329