Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
254 B

  1. // Vector Math
  2. #include <windows.h>
  3. #include <objbase.h>
  4. #include <math.h>
  5. #include <gdiplus.h>
  6. using namespace Gdiplus;
  7. extern float DotProduct(PointF v1,PointF v2);
  8. extern float Magnitude(PointF v);
  9. extern PointF Normalize(PointF vPoint);