more vector order switching.

This commit is contained in:
Campbell Barton
2011-07-25 09:31:39 +00:00
parent 799714fbc9
commit e882925b49
2 changed files with 7 additions and 6 deletions

View File

@@ -542,7 +542,7 @@ class MakeDupliFace(bpy.types.Operator):
trans = matrix.to_translation()
rot = matrix.to_3x3() # also contains scale
return [(b * rot) + trans for b in base_tri]
return [(rot * b) + trans for b in base_tri]
scene = bpy.context.scene
linked = {}
for obj in bpy.context.selected_objects: