(no commit message)
[atyndall/cits2231.git] / scene.c
diff --git a/scene.c b/scene.c
index b684583..3f211b4 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -308,12 +308,11 @@ void motion(int x, int y) {
 \r
         // For big/small scaling, we map negative numbers to 0->1 and positive numbers to 1->inf\r
         float diff = (x - startx);\r
-        float scaling = ( diff + (float)height ) / ( (float)height );\r
+        float scaling = ( diff + (float)height/bigsmallFactor ) / ( (float)height/bigsmallFactor );\r
 \r
         sceneObjs[curObject].scale[0] *= scaling;\r
         sceneObjs[curObject].scale[1] *= scaling;\r
         sceneObjs[curObject].scale[2] *= scaling;\r
-        printf("Diff is %f, Scaling by %f on all axii, 1/map is %f\n", diff, sceneObjs[curObject].scale[0], scaling);\r
       }\r
 \r
       startx = x;\r

UCC git Repository :: git.ucc.asn.au