patch [#28554] BMesh: fix for 28553

from Andrew Wiggin (ender79)
This commit is contained in:
Campbell Barton 2011-09-08 10:06:28 +00:00
parent 61b6fcd804
commit d841067c35

@ -927,7 +927,7 @@ void bmesh_similarverts_exec(BMesh *bm, BMOperator *op)
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;
}