X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=fc935d0e44f8427dc1ee1750054e4d062cbebcc6;hp=22598df15001a74dc2b9aacf1c03c074e3e804a8;hb=e90677255ab1f7aa49d88d5e0b5a427ca83b2952;hpb=d5375f57e65b258c22c6d625c10c81c7f228350e diff --git a/scene.c b/scene.c index 22598df..fc935d0 100644 --- a/scene.c +++ b/scene.c @@ -599,10 +599,9 @@ int drawFloorRecurse = 2; void drawSquare(int recurseLevel, GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) { - + printf("%d, %d, %d, %d\n", x1, y2, x2, y2); if ( drawFloorRecurse != recurseLevel ) { - printf("Drawing (%.10f, %.10f) -> (%.10f, %.10f)\n", x1, y2, x2, y2); GLfloat xm = (x1 + x2) / 2.0; GLfloat ym = (y1 + y2) / 2.0; int rnew = recurseLevel + 1;