]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
Improving base_winding_logging.patch for base_winding regression test.
authorrambetter <rambetter>
Tue, 28 Dec 2010 09:53:56 +0000 (09:53 +0000)
committerrambetter <rambetter>
Tue, 28 Dec 2010 09:53:56 +0000 (09:53 +0000)
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@370 8a3a26a2-13c4-0310-b231-cf6edde360e5

regression_tests/q3map2/base_winding/base_winding_logging.patch

index 6e2a31a7f7ef5cc48d3fa71906014722bce37130..20fbaee3a19bab0166240a91520396d304ee5e8e 100644 (file)
@@ -1,6 +1,6 @@
 Index: tools/quake3/q3map2/brush.c
 ===================================================================
 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;
 +++ 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++ )
        
        /* 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 );
                
                /* 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++) {
 +              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 */
 +              }
                
                /* walk the list of brush sides */