From: Ash Tyndall Date: Sat, 22 Oct 2011 01:16:12 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=c721e772ebfd5bae455e30616551c654834767ca;hp=5a9dfd8e5f68b2f6062987a5b67bbd7934828bf1 --- diff --git a/scene.c b/scene.c index ad7e4bf..a706c5e 100644 --- a/scene.c +++ b/scene.c @@ -305,7 +305,7 @@ void motion(int x, int y) { //sceneObjs[curObject].x += (x - startx)*leftrightFactor; } else if ( buttonSelected == GLUT_MIDDLE_BUTTON ) { // w: big/small, h: up/down - float scaling = (y - starty)*bigsmallFactor; + float scaling = y*bigsmallFactor; printf("Scaling by %f on all axii\n", scaling); sceneObjs[curObject].scale[0] += scaling; sceneObjs[curObject].scale[1] += scaling;