Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-06 15:46:10 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-06 15:46:10 +0300
commit7f1e03296c2b7176de5dcc28c37ad3ef90927e40 (patch)
treed56f828c549b7d717e8cd5c103334b77ef4ec73b /source/blender/src
parent1e45289f918df3e291ab7eb67d995766943a075c (diff)
Bugfix: rotation difference ipo drivers could give sudden jump. This
was actually due to a numerical issue in the matrix to quaternion conversion code (which was from siggraph '85), now uses an improved version. I hope nothing depends on the previous behavior.. though it should only affect corner cases.
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/drawipo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawipo.c b/source/blender/src/drawipo.c
index c4b7682347a..fd3fa0df927 100644
--- a/source/blender/src/drawipo.c
+++ b/source/blender/src/drawipo.c
@@ -2032,7 +2032,7 @@ static char *ipodriver_channelselect_pup(int is_armature)
tmp+= sprintf(tmp, "|Scale Y %%x%d", OB_SIZE_Y);
tmp+= sprintf(tmp, "|Scale Z %%x%d", OB_SIZE_Z);
if(is_armature)
- tmp+= sprintf(tmp, "|Rotation Differance %%x%d", OB_ROT_DIFF);
+ tmp+= sprintf(tmp, "|Rotation Difference %%x%d", OB_ROT_DIFF);
return (string);
}