Java Math atan2() 方法将指定的直角坐标 (x, y) 转换为极坐标 (r, θ) 并返回角度 theta (θ)。
用法:
Math.atan2(double y, double x)
在这里,atan2()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
参数:
atan2()
方法采用两个参数。
- x/y- 直角坐标 x 和 y
注意:坐标 x 和 y 表示二维平面中的一个点。
atan2() 返回值
- 通过转换坐标返回角度 θ(x, y)坐标(r, θ)
示例:Java Math.atan2()
class Main {
public static void main(String[] args) {
// two coordinates x and y
double x = 3.7;
double y = 6.45;
// get angle θ
double theta = Math.atan2(y, x);
System.out.println(theta); // 1.0499821573815171
// convert into the degree
System.out.println(Math.toDegrees(theta)); // 60.15954618200191
}
}
在这里,atan2()
方法转换坐标(x, y)坐标(r, θ)并返回角度 theta (θ)。
我们使用Math.toDegrees() 方法将角度θ
转换为度数。
相关用法
- Java Math atan()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math addExact(int a, int b)用法及代码示例
- Java Math asin()用法及代码示例
- Java Math abs()用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math max()用法及代码示例
- Java Math incrementExact()用法及代码示例
- Java Math floorMod()用法及代码示例
- Java Math exp()用法及代码示例
- Java Math hypot()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math atan2()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。