stackoverflow Archive
-
LERP
Posted on March 16, 2011 | No Comments// Between a and b, using steps of 'f' size float lerp(float a, float b, float f) { return a + f * (b - a); } // From http://stackoverflow.com/questions/4353525/floating-point-linear-interpolation -
SQL Server Compact Edition
Posted on February 21, 2009 | No CommentsSo, following on from the earlier post about using some sort of embedded database in a .NET application, my question on StackOverflow has been answered with the recommendation to use... -
Storing data in a C# .Net application
Posted on February 21, 2009 | 1 CommentI need a time management program to track the time I spend writing code on my PC. After looking at several items available on the Internet I quickly came to...

