If I know for a fact that the x and z values of the vectors will be identical, therefore im only concerned in measuring the 'vertical' angle of from the differences in the y plane, is there a more efficient method to do this compared to computing the dot product?
My current code using the dot product method is as follows:
float a_mag = a.magnitude();
float b_mag = b.magnitude();
float ab_dot = a.dot(b);
float c = ab_dot / (a_mag * b_mag);
// clamp d to from going beyond +/- 1 as acos(+1/-1) results in infinity
if (c > 1.0f) {
c = 1.0;
} else if (c < -1.0) {
c = -1.0;
}
return acos(c);
I would love to be able to get rid of these square roots
acos(1) == 0andacos(-1) == PI, neither of them are infinity. The functionacosis defined in the interval[-1, 1], and beyond this interval,acosis undefined. – 0605002 Feb 8 '12 at 20:41