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
link|improve this question

73% accept rate
1  
You probably shouldn't be casting a double to int until 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
1  
(int) Math.toDegrees(Math.atan2(e.pos.x - camX, -(e.pos.z - camZ)));, for example. – Zéychin Jan 3 at 8:36
6  
+1 for correctly using scientific terms like angle fancy and angle shit :) – Lukas Eder Jan 3 at 8:41
1  
Did you also remove the other (int) casts? and change the types of your... angles to double? Edit: Does not look like it. You are reducing the precision of your operations by downcasting to int and float. Use double-s to do your operations, and then cast them if you must. – Zéychin Jan 3 at 8:46
1  
float is fairly imprecise, and int is not suitable for any kind of accuracy. Try using double everywhere to get reasonable accuracy. – Bohemian Jan 3 at 8:48
show 6 more comments
feedback

1 Answer

To sum up my suggestions above:

1) Don't cast double types to float or int -- Downcasting results in loss of precision.

2) Use double types for your variables, or they will be implicitly cast to the type of the variable (float or int, in this case), in which case see 1).

link|improve this answer
Thanks, but this is a comment, not a answer. – CyanPrime Jan 3 at 9:01
Considering that I am the only one actively attempting to assist you, and that you have no compilable code, or values for the variables in the code you did provide, it seems that you're looking for an answer you may not find without some updates to your question. I will continue to update this answer as applicable. – Zéychin Jan 3 at 9:08
Very well, and I thank you for your help. I'll change my vote when or if it becomes helpful, no offense. Anyway I don't think changing my floats to doubles is going to change the outcome. So lets try looking somewhere else. Like are my calculations correct? – CyanPrime Jan 3 at 9:14
Like, have you bothered changing everything to double? This can cause bigger issues than you likely realize, and that it why I am lingering on it so. It would probably be helpful for you to provide some values for the variables such as: e.pos.x,e.pos.z,camX,camZ for anyone to debug your code. Unfortunately I must get some sleep now, but I will come back to this in the morning if I can. – Zéychin Jan 3 at 9:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.