当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math atan2()用法及代码示例


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 atan2()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。