(no commit message)
[atyndall/cits2231.git] / scene.c
diff --git a/scene.c b/scene.c
index 31b8317..c579335 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -589,7 +589,7 @@ void display() {
   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);\r
   glLoadIdentity();\r
   gluLookAt(\r
-    0.0, 0.0, -60.0,  /* eye is at (x,y,z) */\r
+    0.0, 0.0, 60.0,  /* eye is at (x,y,z) */\r
     0.0, 0.0,  0.0,  /* center is at (x,y,z) */\r
     0.0, 1.0,  0.0   /* up is in postivie Y direction */\r
     );\r
@@ -614,9 +614,8 @@ void display() {
 \r
     glPushMatrix();\r
     \r
-      //glTranslatef(0.0, 0.0, 0.0);\r
\r
-      glutSolidTeapot(30); // Draw teapot for test\r
+      glTranslatef(0.0, 0.0, 0.0);\r
+      glutWireTeapot(30); // Draw teapot for test\r
     glPopMatrix();\r
 \r
     glPushMatrix();\r
@@ -692,7 +691,7 @@ int main(int argc, char **argv) {
   glDepthFunc(GL_LEQUAL);  // the type\r
   glEnable(GL_CULL_FACE);\r
   glEnable(GL_TEXTURE_2D);\r
-  glLineWidth(3.0);\r
+  glLineWidth(1.0);\r
 \r
   glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);\r
 \r

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