(no commit message)
authorAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 11:00:57 +0000 (19:00 +0800)
committerAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 11:00:57 +0000 (19:00 +0800)
scene.c

diff --git a/scene.c b/scene.c
index c579335..f3650e6 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -508,7 +508,7 @@ void windowReshape(int w, int h) {
  */\r
 /*void mouse(int btn, int state, int x, int y) {\r
   \r
-}*/\r
+}*//*\r
 static void\r
 mouse(int button, int state, int x, int y)\r
 {\r
@@ -551,8 +551,13 @@ motion(int x, int y)
     lightStartY = y;\r
     glutPostRedisplay();\r
   }\r
-}\r
+}*/\r
 \r
+void idle() {\r
+  angle = (int)(angle + 10) % 360;\r
+    angle2 = (int)(angle2 + 10) % 360;\r
+    glutPostRedisplay();\r
+}\r
 \r
 /**\r
  * Draw a floor.\r
@@ -697,8 +702,9 @@ int main(int argc, char **argv) {
 \r
   glutReshapeFunc(windowReshape);\r
   glutDisplayFunc(display);\r
-  glutMouseFunc(mouse);\r
-  glutMotionFunc(motion);\r
+  //glutMouseFunc(mouse);\r
+  //glutMotionFunc(motion);\r
+  glutIdleFunc(idle);\r
 \r
   makeMenu();\r
 \r

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