X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=scene.c;h=7e12fe99d8b4a4f82cfea4034a89a8c1449d91ce;hp=aaa8ba1cdb05bfee5b9eb3de2969f7b1795ecf46;hb=b2bb83668e428c9fa7423415435f673cc17bd06f;hpb=af9b671dec267f3f349302a81f5484a75e43fd21 diff --git a/scene.c b/scene.c index aaa8ba1..7e12fe9 100644 --- a/scene.c +++ b/scene.c @@ -599,10 +599,9 @@ int drawFloorRecurse = 2; 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 ) { - printf("Drawing (%.10f, %.10f) -> (%.10f, %.10f)\n", x1, y2, x2, y2); float xm = (x1 + x2) / 2.0; float ym = (y1 + y2) / 2.0; int rnew = recurseLevel + 1;