mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2025-02-18 10:02:32 +00:00
25 lines
800 B
Diff
25 lines
800 B
Diff
|
Index: tools/quake3/q3map2/brush.c
|
||
|
===================================================================
|
||
|
--- tools/quake3/q3map2/brush.c (revision 368)
|
||
|
+++ tools/quake3/q3map2/brush.c (working copy)
|
||
|
@@ -357,6 +357,8 @@
|
||
|
side_t *side;
|
||
|
plane_t *plane;
|
||
|
|
||
|
+ static int brushord = -1;
|
||
|
+ brushord++;
|
||
|
|
||
|
/* walk the list of brush sides */
|
||
|
for( i = 0; i < brush->numsides; i++ )
|
||
|
@@ -367,6 +369,10 @@
|
||
|
|
||
|
/* make huge winding */
|
||
|
w = BaseWindingForPlane( plane->normal, plane->dist );
|
||
|
+ 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]);
|
||
|
+ }
|
||
|
|
||
|
/* walk the list of brush sides */
|
||
|
for( j = 0; j < brush->numsides && w != NULL; j++ )
|