From: Ash Tyndall Date: Sat, 22 Oct 2011 05:34:04 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=e4c12e05e66672e8c1d0ed11a1583e0638c32d18 --- diff --git a/scene.c b/scene.c index 54ef0d8..fa0f750 100644 --- a/scene.c +++ b/scene.c @@ -310,8 +310,8 @@ void motion(int x, int y) { float angler = 2 * M_PI * ( (rotate*camRotateFactor)/360.0 ); printf("cam angle: %f\n", rotate*camRotateFactor); - sceneObjs[curObject].x += diffx * cos(angler) * 0.1; - sceneObjs[curObject].z += diffx * sin(angler) * 0.1; + // sceneObjs[curObject].x += diffx * cos(angler) * 0.1; + // sceneObjs[curObject].z += diffx * sin(angler) * 0.1; sceneObjs[curObject].x += diffy * sin(angler) * 0.1; sceneObjs[curObject].z += diffy * cos(angler) * 0.1;