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

diff --git a/scene.c b/scene.c
index 4018b3b..a9a5d6b 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -484,8 +484,8 @@ void makeMenu() {
  * @param h New height\r
  */\r
 void windowReshape(int w, int h) {\r
-  GLdouble near = -10.0;\r
-  GLdouble far = 10.0;\r
+  GLdouble near = -1000.0;\r
+  GLdouble far = 1000.0;\r
 \r
   glViewport(0, 0, (GLsizei) w, (GLsizei) h);\r
   glMatrixMode(GL_PROJECTION);\r
@@ -572,7 +572,7 @@ void drawFloor() {
   //  glEnable(GL_TEXTURE_2D);\r
   //}\r
 \r
-  /*glBegin(GL_QUADS);\r
+  glBegin(GL_QUADS);\r
     glTexCoord2f(0.0, 0.0);\r
     glVertex3fv(floorVertices[0]);\r
     glTexCoord2f(0.0, 16.0);\r
@@ -581,7 +581,7 @@ void drawFloor() {
     glVertex3fv(floorVertices[2]);\r
     glTexCoord2f(16.0, 0.0);\r
     glVertex3fv(floorVertices[3]);\r
-  glEnd();*/\r
+  glEnd();\r
 \r
   /*if (useTexture) {\r
     glDisable(GL_TEXTURE_2D);\r
@@ -622,7 +622,7 @@ void display() {
 \r
     glPushMatrix();\r
     \r
-      glTranslatef(0.0, 0.0, 0.0);\r
+      //glTranslatef(0.0, 0.0, 0.0);\r
       glutWireTeapot(30); // Draw teapot for test\r
     glPopMatrix();\r
 \r
@@ -650,10 +650,10 @@ void init() {
   glLoadIdentity();\r
 \r
   gluPerspective(\r
-     60.0,  /* field of view in degree */\r
-      1.0,  /* aspect ratio */ \r
-      0.0,  /* Z near */\r
-    900.0   /* Z far */\r
+       60.0,  /* field of view in degree */\r
+        1.0,  /* aspect ratio */\r
+    -1000.0,  /* Z near */\r
+     1000.0   /* Z far */\r
     );    \r
 \r
   glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, 1);\r

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