[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40038] branches/bmesh/blender/source/ blender/bmesh/operators/utils.c: patch [#28554] BMesh: fix for 28553

Campbell Barton ideasman42 at gmail.com
Thu Sep 8 12:06:29 CEST 2011


Revision: 40038
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40038
Author:   campbellbarton
Date:     2011-09-08 10:06:28 +0000 (Thu, 08 Sep 2011)
Log Message:
-----------
patch [#28554] BMesh: fix for 28553
from Andrew Wiggin (ender79)

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

Modified: branches/bmesh/blender/source/blender/bmesh/operators/utils.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/operators/utils.c	2011-09-08 09:48:41 UTC (rev 40037)
+++ branches/bmesh/blender/source/blender/bmesh/operators/utils.c	2011-09-08 10:06:28 UTC (rev 40038)
@@ -927,7 +927,7 @@
 				switch( type ) {
 				case SIMVERT_NORMAL:
 					/* compare the angle between the normals */
-					if( RAD2DEGF(angle_v3v3(v->no, vs->no) / 180.0f <= thresh )) {
+					if( RAD2DEGF(angle_v3v3(v->no, vs->no)) / 180.0f <= thresh ) {
 						BMO_SetFlag(bm, v, VERT_MARK);
 						cont = 0;
 					}




More information about the Bf-blender-cvs mailing list