X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=04818827bd925b7b809f3b05fec64dd1f1bda0dd;hp=fc935d0e44f8427dc1ee1750054e4d062cbebcc6;hb=1c41675b235ffe68ffb6238bb0a252261360ae04;hpb=e90677255ab1f7aa49d88d5e0b5a427ca83b2952 diff --git a/scene.c b/scene.c index fc935d0..0481882 100644 --- a/scene.c +++ b/scene.c @@ -583,7 +583,7 @@ void drawFloor() { glVertex3fv(floorVertices[3]); glEnd();*/ -drawSquare(0, -1000, -1000, 1000, 1000); +drawSquare(0, -10.0, -10.0, 10.0, 10.0); /*if (useTexture) { glDisable(GL_TEXTURE_2D); @@ -597,13 +597,13 @@ int drawFloorRecurse = 2; drawSquare(0, x1, y1, x2, y2); }*/ -void drawSquare(int recurseLevel, GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) { +void drawSquare(int recurseLevel, float x1, float y1, float x2, float y2) { printf("%d, %d, %d, %d\n", x1, y2, x2, y2); if ( drawFloorRecurse != recurseLevel ) { - GLfloat xm = (x1 + x2) / 2.0; - GLfloat ym = (y1 + y2) / 2.0; + float xm = (x1 + x2) / 2.0; + float ym = (y1 + y2) / 2.0; int rnew = recurseLevel + 1; printf("Recursing to level %d\n", rnew);