Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
triangle solution in Creative category for Clock Angle by gyahun_dash
def clock_angle(time):
h, m = map(float, time.split(':'))
return 180 - abs(180 - (h * 60 + m) % (720 / 11) * 11 / 2)
Oct. 29, 2014
Comments: