Finding the closest difference between 2 degrees of a compass - Javascript
I'm basically trying to find how many degrees apart two points of a compass are. For example if a person is facing 270 and their compass is 280 there are 10 degrees between those 2 points. I'd also like a negative number if it's to the left and positive to the right, relative to the 1st heading. The problem comes when the to headings are 350 and 020 for example. These two points are 30 degrees apart but would give a result of -330. Below is an example of my code: function ConvertToRadians(_var) { return _var * (Math.PI/180); } function ConvertToDegrees(_var) { return _var * (180/Math.PI); }