From 07c1a3269730a26617d9818677092f3227c83f77 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Tue, 18 Oct 2011 16:05:43 +0800 Subject: [PATCH] --- scene.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/scene.c b/scene.c index cbe3b56..fae8cde 100644 --- a/scene.c +++ b/scene.c @@ -538,7 +538,7 @@ void display() { glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt( - 0.0, 90.0, 60.0, /* eye is at (x,y,z) */ + 0.0, 0.0, 60.0, /* eye is at (x,y,z) */ 0.0, 0.0, 0.0, /* center is at (x,y,z) */ 0.0, 100.0, 0.0 /* up is in postivie Y direction */ ); @@ -557,17 +557,14 @@ void display() { drawFloor(); glDisable(GL_BLEND); - glMatrixMode(GL_PROJECTION); - glPushMatrix(); - + //glPushMatrix(); glTranslatef(0.0, 0.0, 0.0); glutSolidTeapot(5); // Draw teapot for test - glPopMatrix(); + // glPopMatrix(); glPushMatrix(); glDisable(GL_LIGHTING); - glLoadIdentity(); glColor3f(1.0, 1.0, 1.0); /* Draw a yellow ball at the light source. */ -- 2.20.1