Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-07 20:10:06 +01:00
Merge pull request #320 from Dumbo52/master
Fix imprecise rotations bug.
Dieser Commit ist enthalten in:
Commit
1209e48470
@ -47,4 +47,62 @@ public final class MathUtils {
|
|||||||
return (int) (a - n * Math.floor(Math.floor(a) / n));
|
return (int) (a - n * Math.floor(Math.floor(a) / n));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the cosine of an angle given in degrees. This is better than
|
||||||
|
* just {@code Math.cos(Math.toRadians(degrees))} because it provides a
|
||||||
|
* more accurate result for angles divisible by 90 degrees.
|
||||||
|
*
|
||||||
|
* @param degrees the angle
|
||||||
|
* @return the cosine of the given angle
|
||||||
|
*/
|
||||||
|
public static double dCos(double degrees) {
|
||||||
|
int dInt = (int) degrees;
|
||||||
|
if (degrees == dInt && dInt % 90 == 0) {
|
||||||
|
dInt %= 360;
|
||||||
|
if (dInt < 0) {
|
||||||
|
dInt += 360;
|
||||||
|
}
|
||||||
|
switch (dInt) {
|
||||||
|
case 0:
|
||||||
|
return 1.0;
|
||||||
|
case 90:
|
||||||
|
return 0.0;
|
||||||
|
case 180:
|
||||||
|
return -1.0;
|
||||||
|
case 270:
|
||||||
|
return 0.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Math.cos(Math.toRadians(degrees));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the sine of an angle given in degrees. This is better than just
|
||||||
|
* {@code Math.cos(Math.toRadians(degrees))} because it provides a more
|
||||||
|
* accurate result for angles divisible by 90 degrees.
|
||||||
|
*
|
||||||
|
* @param degrees the angle
|
||||||
|
* @return the sine of the given angle
|
||||||
|
*/
|
||||||
|
public static double dSin(double degrees) {
|
||||||
|
int dInt = (int) degrees;
|
||||||
|
if (degrees == dInt && dInt % 90 == 0) {
|
||||||
|
dInt %= 360;
|
||||||
|
if (dInt < 0) {
|
||||||
|
dInt += 360;
|
||||||
|
}
|
||||||
|
switch (dInt) {
|
||||||
|
case 0:
|
||||||
|
return 0.0;
|
||||||
|
case 90:
|
||||||
|
return 1.0;
|
||||||
|
case 180:
|
||||||
|
return 0.0;
|
||||||
|
case 270:
|
||||||
|
return -1.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Math.cos(Math.toRadians(degrees));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
package com.sk89q.worldedit.math.transform;
|
package com.sk89q.worldedit.math.transform;
|
||||||
|
|
||||||
import com.sk89q.worldedit.Vector;
|
import com.sk89q.worldedit.Vector;
|
||||||
|
import com.sk89q.worldedit.math.MathUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An affine transform.
|
* An affine transform.
|
||||||
@ -244,9 +245,8 @@ public class AffineTransform implements Transform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public AffineTransform rotateX(double theta) {
|
public AffineTransform rotateX(double theta) {
|
||||||
theta = Math.toRadians(theta);
|
double cot = MathUtils.dCos(theta);
|
||||||
double cot = Math.cos(theta);
|
double sit = MathUtils.dSin(theta);
|
||||||
double sit = Math.sin(theta);
|
|
||||||
return concatenate(
|
return concatenate(
|
||||||
new AffineTransform(
|
new AffineTransform(
|
||||||
1, 0, 0, 0,
|
1, 0, 0, 0,
|
||||||
@ -255,9 +255,8 @@ public class AffineTransform implements Transform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public AffineTransform rotateY(double theta) {
|
public AffineTransform rotateY(double theta) {
|
||||||
theta = Math.toRadians(theta);
|
double cot = MathUtils.dCos(theta);
|
||||||
double cot = Math.cos(theta);
|
double sit = MathUtils.dSin(theta);
|
||||||
double sit = Math.sin(theta);
|
|
||||||
return concatenate(
|
return concatenate(
|
||||||
new AffineTransform(
|
new AffineTransform(
|
||||||
cot, 0, sit, 0,
|
cot, 0, sit, 0,
|
||||||
@ -266,9 +265,8 @@ public class AffineTransform implements Transform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public AffineTransform rotateZ(double theta) {
|
public AffineTransform rotateZ(double theta) {
|
||||||
theta = Math.toRadians(theta);
|
double cot = MathUtils.dCos(theta);
|
||||||
double cot = Math.cos(theta);
|
double sit = MathUtils.dSin(theta);
|
||||||
double sit = Math.sin(theta);
|
|
||||||
return concatenate(
|
return concatenate(
|
||||||
new AffineTransform(
|
new AffineTransform(
|
||||||
cot, -sit, 0, 0,
|
cot, -sit, 0, 0,
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren