[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47840] trunk/blender/source/blender/bmesh /operators/bmo_dupe.c: patch [#31574] Screw seams to not work

Campbell Barton ideasman42 at gmail.com
Wed Jun 13 18:06:25 CEST 2012


Revision: 47840
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47840
Author:   campbellbarton
Date:     2012-06-13 16:06:13 +0000 (Wed, 13 Jun 2012)
Log Message:
-----------
patch [#31574] Screw seams to not work
from Benoit Donat-Bouillud (ladeheria)

from tracker -
  When using a screw axis (reference edge for screw), the operation always give the same result (as if the orientation of the reference edge was not take into account).

Modified Paths:
--------------
    trunk/blender/source/blender/bmesh/operators/bmo_dupe.c

Modified: trunk/blender/source/blender/bmesh/operators/bmo_dupe.c
===================================================================
--- trunk/blender/source/blender/bmesh/operators/bmo_dupe.c	2012-06-13 15:33:59 UTC (rev 47839)
+++ trunk/blender/source/blender/bmesh/operators/bmo_dupe.c	2012-06-13 16:06:13 UTC (rev 47840)
@@ -504,7 +504,9 @@
 			BMO_op_finish(bm, &extop);
 		}
 
-		if (usedvec)
+		if (usedvec) {
+			mul_m3_v3(rmat, dvec);
 			BMO_op_callf(bm, "translate vec=%v verts=%s", dvec, op, "lastout");
+		}
 	}
 }




More information about the Bf-blender-cvs mailing list