standardAngle static method
Normalizes an angle to be in range [0-360). Angles outside this range will be normalized to be the equivalent angle with that range. @param {number} angle Angle in degrees. @return {number} Standardized angle.
Implementation
static double standardAngle(double angle)
{
return modulo(angle, 360);
}