]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
remove unnecessary code found by Rambetter
authorRudolf Polzer <divVerent@xonotic.org>
Wed, 19 Jan 2011 07:02:00 +0000 (08:02 +0100)
committerRudolf Polzer <divVerent@xonotic.org>
Wed, 19 Jan 2011 07:02:00 +0000 (08:02 +0100)
tools/quake3/q3map2/model.c

index 74e47a8a6db67548258c66fa3ffbd25f99a8e2f0..a56134c82777066c33851d4a8e33f60e6ad6c22a 100644 (file)
@@ -528,19 +528,6 @@ void InsertModel( const char *name, int skin, int frame, m4x4_t transform, remap
                                        
                                        /* copy xyz */
                                        VectorCopy( dv->xyz, points[ j ] );
-                                       VectorCopy( dv->xyz, backs[ j ] );
-                                       
-                                       /* find nearest axial to normal and push back points opposite */
-                                       /* note: this doesn't work as well as simply using the plane of the triangle, below */
-                                       for( k = 0; k < 3; k++ )
-                                       {
-                                               if( fabs( dv->normal[ k ] ) >= fabs( dv->normal[ (k + 1) % 3 ] ) &&
-                                                       fabs( dv->normal[ k ] ) >= fabs( dv->normal[ (k + 2) % 3 ] ) )
-                                               {
-                                                       backs[ j ][ k ] += dv->normal[ k ] < 0.0f ? 64.0f : -64.0f;
-                                                       break;
-                                               }
-                                       }
                                }
 
                                VectorCopy( points[0], points[3] ); // for cyclic usage