From: Ash Tyndall Date: Sat, 22 Oct 2011 01:17:06 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=84a44257a71818d30cf2bbdea195a0b7d246aa83 --- diff --git a/scene.c b/scene.c index a706c5e..7d5456f 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*bigsmallFactor; + float scaling = (y - starty);//*bigsmallFactor; printf("Scaling by %f on all axii\n", scaling); sceneObjs[curObject].scale[0] += scaling; sceneObjs[curObject].scale[1] += scaling;