From cfaea2be22b34195a5c8c85600b1f67ea419d6c2 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Sat, 22 Oct 2011 13:26:58 +0800 Subject: [PATCH] --- scene.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scene.c b/scene.c index 08daa01..464268b 100644 --- a/scene.c +++ b/scene.c @@ -309,9 +309,12 @@ void motion(int x, int y) { // **NOTE: Currently a work in progress, does not work correctly float angler = 2 * M_PI * ( (rotate*camRotateFactor)/360.0 ); printf("cam angle: %f\n", rotate*camRotateFactor); - // float arc = arctan() - sceneObjs[curObject].x += diffx * cos(angler) * 0.3; - sceneObjs[curObject].z += diffx * sin(angler) * 0.3; + + sceneObjs[curObject].x += diffx * cos(angler) * 0.1; + sceneObjs[curObject].z += diffx * sin(angler) * 0.1; + + sceneObjs[curObject].x += diffy * cos(90 - angler) * 0.1; + sceneObjs[curObject].z += diffy * sin(90 - angler) * 0.1; } else if ( buttonSelected == GLUT_MIDDLE_BUTTON ) { // w: big/small -- 2.20.1