From: Ash Tyndall Date: Tue, 18 Oct 2011 11:30:59 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=1f60a33460cf419fa2e99b7853b4869dffde2c9a --- diff --git a/scene.c b/scene.c index a2da934..3a1cae6 100644 --- a/scene.c +++ b/scene.c @@ -608,6 +608,7 @@ void drawSquare(int recurseLevel, GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 drawSquare(recurseLevel + 1, x1, y1, xm, y2); drawSquare(recurseLevel + 1, xm, y1, x2, y2); } else { + printf("Drawing (%f, %f) -> (%f, %f)", x1, y2, x2, y2); glBegin(GL_QUADS); glVertex3f(x1, 0.0, y1); glVertex3f(x1, 0.0, y2);