(no commit message)
[atyndall/cits2231.git] / scene.c
diff --git a/scene.c b/scene.c
index cfb80c0..d1f88e0 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -110,10 +110,10 @@ char *dirDefault2 = "/cslinux/examples/CITS2231/project-files/models-textures";
 char dataDir[200];  // Stores the directory name for the meshes and textures.\r
 \r
 static GLfloat floorVertices[4][3] = {\r
-  { -20.0, 0.0, 20.0 },\r
-  { 20.0, 0.0, 20.0 },\r
-  { 20.0, 0.0, -20.0 },\r
-  { -20.0, 0.0, -20.0 },\r
+  { -1000.0, 0.0, 1000.0 },\r
+  { 1000.0, 0.0, 1000.0 },\r
+  { 1000.0, 0.0, -1000.0 },\r
+  { -1000.0, 0.0, -1000.0 },\r
 };\r
 \r
 static GLfloat lightColor[] = {1.0, 1.0, 1.0, 1.0}; // White light\r
@@ -557,18 +557,16 @@ void display() {
     glDisable(GL_BLEND);\r
 \r
     glPushMatrix();\r
-      glDisable(GL_LIGHTING);\r
-      \r
+      glLoadIdentity();\r
       glColor3f(1.0, 0.0, 1.0);\r
-      glTranslatef(0.0, 8.0, 0.0);\r
+      glTranslatef(-8.0, 0.0, -1.0);\r
 \r
       glutSolidTeapot(1); // Draw teapot for test\r
-      \r
-      glEnable(GL_LIGHTING);\r
     glPopMatrix();\r
 \r
     glPushMatrix();\r
       glDisable(GL_LIGHTING);\r
+      glLoadIdentity();\r
       glColor3f(1.0, 1.0, 1.0);\r
 \r
       /* Draw a yellow ball at the light source. */\r

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