gpt4 book ai didi

java - 我必须创建两种方法,一种用于顺时针旋转,另一种用于逆时针旋转

转载 作者:行者123 更新时间:2023-12-02 03:49:08 24 4
gpt4 key购买 nike

我有两种方法,一种是获取用户输入的点,然后执行计算以顺时针旋转 90 度,而在另一种方法中,它完全相同,只是逆时针旋转 90 度。我已经尝试过,但得到了错误的结果,请提供有关修复方法的任何建议,

private static String Clockwise(int Amount, int[] x, int[] y) {
String message = "";
int[] tempX = x;
int[] tempY = y;

for (int count = 0; count <= Amount; count++) {//amount of times
message = "\n";
for (int index = 0; index < pointer; index++) {//go through array
tempX[index] = tempX[index] * -1;//multiply X
tempY[index] = tempY[index] * 1;//multiply Y

message += ("(" + y[index] + "," + x[index] + ")\n");//output
}//end for
}//end outerfor
return message;
}//end clockwise

private static String AntiClockwise(int Amount, int[] x, int[] y) {
String message = "";
int[] tempX = x;
int[] tempY = y;
for (int count = 0; count <= Amount; count++) {//amount of times
message = "\n";
for (int index = 0; index < pointer; index++) {//go through for loop
tempX[index] = tempX[index] * 1;//multiply X
tempY[index] = tempY[index] * -1;//multiply Y
message += ("(" + tempY[index] + "," + tempX[index] + ")\n");//create message
}//end for
}//end outerfor

return message;
}//end anticlockwise

最佳答案

绕原点逆时针旋转一般角度,公式为:

x_new =  cos(theta)*x - sin(theta)*y
y_new = sin(theta)*x + cos(theta)*y

所以,如果你想旋转 90 度的某个倍数,你可以简单地使用:

double theta = Math.toRadians(90 * N);

并将其代入公式中。这意味着您不需要循环来旋转 N 次 - 只需按实际角度旋转一次即可。

<小时/>

但是,如果您想每次旋转 90 度,则可以简单地代入 cos(90 deg) 和 sin(90 deg) 的值(进行逆时针旋转):

x_new = cos(90 deg)*x - sin(90 deg)*y = 0*x - 1*y = -y
y_new = sin(90 deg)*x + cos(90 deg)*y = 1*x + 0*y = x

因此:

x_new = -y
y_new = x

这样做有好处,因为像这样的几个作业比做完整的数学要快得多。

注意,你必须小心不要写:

x = -y;
y = x;

因为第二个语句使用第一个语句的结果。您需要将原始 x 存储在临时变量中才能正确执行此操作。

关于java - 我必须创建两种方法,一种用于顺时针旋转,另一种用于逆时针旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36041345/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com