Okay, so I'm trying to add two angles together, and I'm trying two different things. the first one is using quaternions and matrices and vectors to get the right angle, the other is just angle1 - angle2. Now I'm getting different results for both, so I need to know which one is correct,if any. This is my reverent code. I'm using LWJGL, and Java if it matters.
float angle = (float) Math.toDegrees(Math.atan2(e.pos.x - camX, -(e.pos.z - camZ)));
Matrix3f m1 = Matrix3fFromAngleY(angle);
Quaternion q1 = new Quaternion();
q1.setFromMatrix(m1);
Matrix3f m2 = Matrix3fFromAngleY(-e.yaw);
Quaternion q2 = new Quaternion();
q2.setFromMatrix(m2);
Quaternion sum = new Quaternion();
Quaternion.mul(q1, q2, sum);
Vector3f vec = new Vector3f(0,1,0);
vec = applyQuat(vec, sum);
int fancyAngle = (int) (Math.toDegrees(Math.atan2(vec.x,-vec.z))/45);
int shitAngle = (int) ((Math.toDegrees(Math.atan2(e.pos.x - camX, -(e.pos.z - camZ))) - e.yaw)/45);
while(shitAngle >= MAX_ENEMY_ANGLES) shitAngle -= MAX_ENEMY_ANGLES;
while(shitAngle < 0) shitAngle += MAX_ENEMY_ANGLES;
while(fancyAngle >= MAX_ENEMY_ANGLES) fancyAngle -= MAX_ENEMY_ANGLES;
while(fancyAngle < 0)fancyAngle += MAX_ENEMY_ANGLES;
System.out.println("["+i+"]:angle fancy: " + fancyAngle + " angle shit: " + shitAngle);
And here is the functions I'm using for fancy angle.
public Matrix3f Matrix3fFromAngleX(float angle){
Matrix3f m = new Matrix3f();
float radian = (float) Math.toRadians(angle);
m.m00 = 1;
m.m01 = 0;
m.m02 = 0;
m.m10 = 0;
m.m11 = (float) Math.cos(radian);
//unknown format trying {1,2,3}
m.m12 = (float) -Math.sin(radian);
m.m10 = 0;
m.m11 = (float) Math.sin(radian);
m.m12 = (float) Math.cos(radian);
return m;
}
public Matrix3f Matrix3fFromAngleY(float angle){
Matrix3f m = new Matrix3f();
float radian = (float) Math.toRadians(angle);
m.m00 = (float) Math.cos(angle);
m.m01 = 0;
m.m02 = (float) Math.sin(radian);
m.m10 = 0;
m.m11 = 1;
//unknown format trying {1,2,3}
m.m12 = 0;
m.m10 = (float) -Math.sin(radian);
m.m11 = 0;
m.m12 = (float) Math.cos(radian);
return m;
}
Vector3f applyQuat(Vector3f vec, Quaternion q)
{
vec.normalise();
Quaternion vecQuat = new Quaternion(), resQuat = new Quaternion();
vecQuat.x = vec.x;
vecQuat.y = vec.y;
vecQuat.z = vec.z;
vecQuat.w = 0.0f;
vecQuat.negate(resQuat);
Quaternion.mul(q, resQuat, resQuat);
return (new Vector3f(resQuat.x, resQuat.y, resQuat.z));
}
And here are my results
[0]:angle fancy: 1 angle shit: 4
[1]:angle fancy: 0 angle shit: 1
[2]:angle fancy: 0 angle shit: 0
[3]:angle fancy: 0 angle shit: 0
[4]:angle fancy: 5 angle shit: 4
[5]:angle fancy: 0 angle shit: 1
[0]:angle fancy: 1 angle shit: 4
[1]:angle fancy: 0 angle shit: 1
[2]:angle fancy: 0 angle shit: 0
[3]:angle fancy: 0 angle shit: 0
[4]:angle fancy: 5 angle shit: 4
[5]:angle fancy: 0 angle shit: 1
doubletointuntil all of the calculations are done, F.Y.I.. This is probably resulting in the loss of significant numerical precision, compoundingly so. – Zéychin Jan 3 at 8:31(int) Math.toDegrees(Math.atan2(e.pos.x - camX, -(e.pos.z - camZ)));, for example. – Zéychin Jan 3 at 8:36angle fancyandangle shit:) – Lukas Eder Jan 3 at 8:41(int)casts? and change the types of your...anglestodouble? Edit: Does not look like it. You are reducing the precision of your operations by downcasting tointandfloat. Usedouble-s to do your operations, and then cast them if you must. – Zéychin Jan 3 at 8:46floatis fairly imprecise, andintis not suitable for any kind of accuracy. Try usingdoubleeverywhere to get reasonable accuracy. – Bohemian Jan 3 at 8:48