[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24433] branches/bmesh/blender/source/ blender/bmesh/operators/removedoubles.c: remove doubles was flipping face normals

Joseph Eagar joeedh at gmail.com
Tue Nov 10 00:08:44 CET 2009


Revision: 24433
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24433
Author:   joeedh
Date:     2009-11-10 00:08:44 +0100 (Tue, 10 Nov 2009)

Log Message:
-----------
remove doubles was flipping face normals

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/bmesh/operators/removedoubles.c

Modified: branches/bmesh/blender/source/blender/bmesh/operators/removedoubles.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/operators/removedoubles.c	2009-11-09 22:47:55 UTC (rev 24432)
+++ branches/bmesh/blender/source/blender/bmesh/operators/removedoubles.c	2009-11-09 23:08:44 UTC (rev 24433)
@@ -178,7 +178,7 @@
 		if (BMO_TestFlag(bm, v2, ELE_DEL)) 
 			v2 = BMO_Get_MapPointer(bm, op, "targetmap", v2);
 		
-		f2 = BM_Make_Ngon(bm, v, v2, edges, a, 0);
+		f2 = BM_Make_Ngon(bm, v2, v, edges, a, 0);
 		if (f2) {
 			BM_Copy_Attributes(bm, bm, f, f2);
 





More information about the Bf-blender-cvs mailing list