X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=scene.c;h=93d2171b159c1407cacb8148006b849f7d2b5bc0;hb=3d74d1a15b8fa011c0a94de16d14120066f22fa4;hp=d829def5640d484cbadb5e0218aae08a20af442c;hpb=05197548c4c303f66cc7cae18d3cc134b0dfae96;p=atyndall%2Fcits2231.git diff --git a/scene.c b/scene.c index d829def..93d2171 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(); @@ -595,8 +595,6 @@ void init() { 0.0, 1.0, 0.0 /* up is in postivie Y direction */ ); - glTranslatef( 0.0f, 0.0f, -25.0f); // Move into the Screen 10.0 - glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, 1); glLightfv(GL_LIGHT0, GL_DIFFUSE, lightColor); glLightf(GL_LIGHT0, GL_CONSTANT_ATTENUATION, 0.1);