X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=aabad998ed4fabc2292f27858e5d33f98575393c;hp=55b185623f5a2b8f6a46e9d6c735ed285a718bab;hb=e9f79475908e1e8b0de29edf00f95a1fd3f80e7d;hpb=e167fee487eef79406a5baa2757a7262811b027b;ds=sidebyside diff --git a/scene.c b/scene.c index 55b1856..aabad99 100644 --- a/scene.c +++ b/scene.c @@ -122,6 +122,7 @@ void processObjectEvents(int id) { void processTextureEvents(int id) { if ( curObject >= 0 ) { sceneObjs[curObject].texture.id = id; + sceneObjs[curObject].texture.scale = 1; glutPostRedisplay(); } } @@ -278,8 +279,9 @@ void motion(int x, int y) { sceneObjs[curObject].rotation.x += diffx * rotateFactor; // h: texture scale + // **NOTE: Seems to be problem with scaling, delayed action float max = (float)height/texscaleFactor; - float scaling = (diffy + max) / max; + float scaling = (-diffy + max) / max; sceneObjs[curObject].texture.scale *= scaling; }