From: Ash Tyndall Date: Sun, 9 Oct 2011 11:39:22 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;ds=sidebyside;h=610f7d0fe55f083c89382619a2cb72180dc9973a;p=atyndall%2Fcits2231.git --- diff --git a/scene.c b/scene.c index 6441466..327467d 100644 --- a/scene.c +++ b/scene.c @@ -500,10 +500,10 @@ void display() { glTranslatef(0.0f, 0.0f, 0.0f); glBegin(GL_QUADS); - glVertex3f(-1.0f, 1.0f, 0.0f); - glVertex3f( 1.0f, 1.0f, 0.0f); - glVertex3f( 1.0f,-1.0f, 0.0f); - glVertex3f(-1.0f,-1.0f, 0.0f); + glVertex3f(0.0f, 1.0f, -1.0f); + glVertex3f(0.0f, 1.0f, 1.0f); + glVertex3f(0.0f,-1.0f, 1.0f); + glVertex3f(0.0f,-1.0f, -1.0f); glEnd();