From: rambetter Date: Tue, 28 Dec 2010 09:53:56 +0000 (+0000) Subject: Improving base_winding_logging.patch for base_winding regression test. X-Git-Tag: xonotic-v0.7.0~16^2~12^2~35 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=f40a6cb2d5bcb7805f353081bc2ec58ed26bbdf4 Improving base_winding_logging.patch for base_winding regression test. git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@370 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- diff --git a/regression_tests/q3map2/base_winding/base_winding_logging.patch b/regression_tests/q3map2/base_winding/base_winding_logging.patch index 6e2a31a7..20fbaee3 100644 --- a/regression_tests/q3map2/base_winding/base_winding_logging.patch +++ b/regression_tests/q3map2/base_winding/base_winding_logging.patch @@ -1,6 +1,6 @@ Index: tools/quake3/q3map2/brush.c =================================================================== ---- tools/quake3/q3map2/brush.c (revision 368) +--- tools/quake3/q3map2/brush.c (revision 369) +++ tools/quake3/q3map2/brush.c (working copy) @@ -357,6 +357,8 @@ side_t *side; @@ -11,13 +11,16 @@ Index: tools/quake3/q3map2/brush.c /* walk the list of brush sides */ for( i = 0; i < brush->numsides; i++ ) -@@ -367,6 +369,10 @@ +@@ -367,6 +369,13 @@ /* make huge winding */ w = BaseWindingForPlane( plane->normal, plane->dist ); -+ printf(">>> BaseWindingForPlane() for brush %i, side %i is as follows:\n", brushord, i); ++ Sys_Printf(">>> BaseWindingForPlane() for brush %i, side %i is as follows:\n", brushord, i); + for (j = 0; j < w->numpoints; j++) { -+ printf(">>> (%.10f %.10f %.10f)\n", w->p[j][0], w->p[j][1], w->p[j][2]); ++ Sys_Printf(">>> (%.1f %.1f %.1f) [rounded to nearest integer coordinates]\n", ++ Q_rint(w->p[j][0]), ++ Q_rint(w->p[j][1]), ++ Q_rint(w->p[j][2])); + } /* walk the list of brush sides */