Goktug
0
Q:

calculate smallest angle difference

public static double angleDiff(double a, double b) {
    return ((((a - b) % 360F) + 540F) % 360F) - 180F;
}
0
var x = Math.PI * 1.9;
var y = Math.PI * 0.1;
Math.atan2(Math.sin(x-y), Math.cos(x-y)); // -Math.PI * 0.2
0

New to Communities?

Join the community