Welcome to MSDN Blogs Sign in | Join | Help

November 2009 - Posts

lerp

I needed a quick function to return a point.. Spat public Point Lerp( Point p0, Point p1, double amtInterpolate) { double xlerp = p0.X + ( p1.X - p0.X ) * amtInterpolate; double ylerp = p0.Y + ( p1.Y - p0.Y ) * amtInterpolate; Point newPoint = new Point
Posted by SpatDSG | 0 Comments
Filed under:

Debugging managed code.. from a newb for managed code debugging

Debugging managed code in WinDbg has never been my idea of fun. I wasn’t forcibly exposed to it enough I guess. For example, if you look at http://blogs.msdn.com/spatdsg/archive/2009/02/23/there-and-back-again-the-life-of-a-bug-and-fix.aspx there is like
Posted by SpatDSG | 0 Comments
Filed under:

Why am I using VMWare?

Well, I have had to resort to VMWare. I don’t have anything against it really, I used to use it exclusively, but I would rather use an MS platform if it does what I need it to. Unfortunately the VPC version for Win7 does not support 64 bit guests and
Posted by SpatDSG | 3 Comments
Filed under:

Playing with Silverlight..

Testing a few things with SL, eventually want a TFS integrated reporting tool. But, this was more for just fun.
Posted by SpatDSG | 1 Comments
Filed under:
 
Page view tracker