Java atan2()方法具有哪些功能?
Java atan2()方法的功能
atan2()
方法将直角坐标(x,y)转换为极坐标(r,theta)并返回theta
语法
double atan2(double y, double x)
参数
X
-X
在double
数据类型的坐标Y
-Y
在double
数据类型的坐标
返回值
- 该方法从极坐标(r,theta)返回
theta
例
public class testClass{
public static void main(String args[]) {
double x = 90;
double y = 80;
System.out.println( Math.atan2(x, y) );
}
}
/*
以上代码运行后,将输出以下信息
0.844153986113171
*/
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。