X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=6a9399260d853c9e3a0d74e984e85adb05130ee7;hp=93d2171b159c1407cacb8148006b849f7d2b5bc0;hb=a4bfff194cb2440cbab29c871a03130877cdad19;hpb=3d74d1a15b8fa011c0a94de16d14120066f22fa4 diff --git a/scene.c b/scene.c index 93d2171..6a93992 100644 --- a/scene.c +++ b/scene.c @@ -556,14 +556,14 @@ void display() { glutSolidTeapot(1); // Draw teapot for test glPushMatrix(); - //glDisable(GL_LIGHTING); + glDisable(GL_LIGHTING); glColor3f(1.0, 1.0, 1.0); /* Draw a yellow ball at the light source. */ glTranslatef(lightPosition[0], lightPosition[1], lightPosition[2]); glutSolidSphere(1.0, 5, 5); - //glEnable(GL_LIGHTING); + glEnable(GL_LIGHTING); glPopMatrix(); glPopMatrix(); @@ -591,7 +591,7 @@ void init() { glMatrixMode(GL_MODELVIEW); gluLookAt( 0.0, 8.0, 60.0, /* eye is at (0,8,60) */ - 0.0, 8.0, 0.0, /* center is at (0,8,0) */ + 0.0, 8.0, 999.0, /* center is at (0,8,0) */ 0.0, 1.0, 0.0 /* up is in postivie Y direction */ );