0

我已经知道如何根据角度在圆的圆周上找到一个点。我用来这样做的代码如下。

x = Math.sin(Math.toRadians(angle)) * radius;
y = Math.cos(Math.toRadians(angle)) * radius;

我正在尝试撤消此过程。

到目前为止,我有这个代码,它只适用于小于或等于 90 度的角度。

DecimalFormat df = new DecimalFormat("###.####");

angleFromX = normalize(
    Double.parseDouble(
        df.format(
            Math.toDegrees(
                Math.asin(
                    (x / radius)
                )
            )
        )
    )
);
angleFromY = normalize(
    Double.parseDouble(
        df.format(
            Math.toDegrees(
                Math.acos(
                    (y / radius)
                )
            )
        )
    )
);

这是normalize上面使用的方法。

public static double normalize(double angle) {
    angle %= 360;

    if (angle < 0) {
        angle = angle + 360;
    }

    return angle;
}
4

1 回答 1

4

你把 sin 和 cos 混为一谈了。

double x = Math.cos(Math.toRadians(angle)) * radius;
double y = Math.sin(Math.toRadians(angle)) * radius;

要转换回来,请使用以下公式:

double newRadius = Math.hypot(x, y);
double theta = Math.atan2(y,x);
double newAngle = Math.toDegrees(theta);

根据实现,您可能需要调整 theta(角度)的值。

  • 如果它在象限 2 或 3 中,则添加 180 度。
  • 如果它在象限 4 中,则添加 360 度。

此外,您可能需要添加:

newAngle = (newAngle+360)%360

保持角度为正且介于 0 和 360 之间。

于 2014-05-29T01:08:08.077 回答