X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=1f0632d8f9a3fb5f9498d6f68f570ccda6d9c508;hp=16eae700682562b2dde4c022e3756edfc58ab8b5;hb=561e11f069889bfbd78a470a3cca016679af05b8;hpb=9434d3fa1a3b6cc21dfea45b9a439bee63ef0561 diff --git a/scene.c b/scene.c index 16eae70..1f0632d 100644 --- a/scene.c +++ b/scene.c @@ -537,7 +537,7 @@ void display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glLoadIdentity(); gluLookAt( - 0.0, 0.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, 1.0, 0.0 /* up is in postivie Y direction */ ); @@ -559,8 +559,8 @@ void display() { glPushMatrix(); //glTranslatef(0.0, 0.0, 0.0); - - glutSolidTeapot(5); // Draw teapot for test + + glutSolidTeapot(30); // Draw teapot for test glPopMatrix(); glPushMatrix();