Created
August 8, 2015 20:24
-
-
Save bragboy/58b68500f0a7730f384f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double angle(int h, int m) | |
{ | |
double hangle = 0.5D * (h*60 + m); | |
double mangle = 6*m; | |
angle = abs(hangle – mangle); | |
angle = min(angle, 360-angle); | |
return angle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment