--- Path.cpp.orig Thu Oct 23 09:51:17 2008 +++ Path.cpp Wed Jan 28 14:23:19 2009 @@ -80,8 +80,8 @@ Path& Path::rotate(const b2Mat22& rot) for (int i=0;i(j1 * at(i).x + j2 * at(i).y), + static_cast(k1 * at(i).x + k2 * at(i).y) ); } return *this; } @@ -89,8 +89,8 @@ Path& Path::rotate(const b2Mat22& rot) Path& Path::scale(float32 factor) { for (int i=0;i(at(i).x * factor); + at(i).y = static_cast(at(i).y * factor); } return *this; }