[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33514] trunk/blender/source/blender/ editors/armature/poseobject.c: Bugfix #25003

Ton Roosendaal ton at blender.org
Mon Dec 6 19:10:08 CET 2010


Revision: 33514
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33514
Author:   ton
Date:     2010-12-06 19:10:08 +0100 (Mon, 06 Dec 2010)

Log Message:
-----------
Bugfix #25003

Pose mode: "Paste flipped" failed on not-normalized quaternions
(for example ones you edited with buttons)

Modified Paths:
--------------
    trunk/blender/source/blender/editors/armature/poseobject.c

Modified: trunk/blender/source/blender/editors/armature/poseobject.c
===================================================================
--- trunk/blender/source/blender/editors/armature/poseobject.c	2010-12-06 17:49:57 UTC (rev 33513)
+++ trunk/blender/source/blender/editors/armature/poseobject.c	2010-12-06 18:10:08 UTC (rev 33514)
@@ -1015,6 +1015,7 @@
 					else {
 						float eul[3];
 						
+						normalize_qt(pchan->quat);
 						quat_to_eul(eul, pchan->quat);
 						eul[1]*= -1;
 						eul[2]*= -1;





More information about the Bf-blender-cvs mailing list