devblogphilip.blogspot.com
development blog: December 2010
http://devblogphilip.blogspot.com/2010_12_01_archive.html
Monday, December 20, 2010. Links to this post. Subscribe to: Posts (Atom). ThermoStat Simulation in Java. View my complete profile. Silverlight 2 beta 2.
devblogphilip.blogspot.com
development blog: Book Review
http://devblogphilip.blogspot.com/2012/06/book-review.html
Monday, June 18, 2012. Subscribe to: Post Comments (Atom). ThermoStat Simulation in Java. View my complete profile. Silverlight 2 beta 2.
devblogphilip.blogspot.com
development blog: June 2012
http://devblogphilip.blogspot.com/2012_06_01_archive.html
Monday, June 18, 2012. Links to this post. Subscribe to: Posts (Atom). ThermoStat Simulation in Java. View my complete profile. Silverlight 2 beta 2.
devblogphilip.blogspot.com
development blog: Angle between the hr hand and min hand in the clock
http://devblogphilip.blogspot.com/2010/01/angle-between-hr-hand-and-min-hand-in.html
Monday, January 18, 2010. Angle between the hr hand and min hand in the clock. C# Function that would tell the angle between the hr hand and min hand in the clock. Assume we always have valid numbers for hour and minute. TotalHourPerDay = 12;. TotalMinutesPerHour = 60;. TotalMinutesPerDay = 360;. M pos = m / totalMinutesPerHour * totalMinutesPerDay;. H pos = (h / totalHourPerDay * totalMinutesPerDay) (m / totalMinutesPerHour * totalMinutesPerDay / totalHourPerDay);. Gap = Math.Abs(m pos - h pos);.