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>2011-12-16 23:53:12 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-16 23:53:12 +0400
commit3311164b24da61f2967f96d0ee27508a7e2e0267 (patch)
tree0824417cf3d645f59d98b210c02a4c5ef6c05a48 /source/blender/editors/space_clip
parent3c8ab559a5bd31fd38e9c5cf9da8505ca28f4887 (diff)
Math lib: matrix multiplication order fix for two functions that were
inconsistent with similar functions & math notation: mul_m4_m4m4(R, B, A) => mult_m4_m4m4(R, A, B) mul_m3_m3m4(R, B, A) => mult_m3_m3m4(R, A, B) For branch maintainers, it should be relatively simple to fix things manually, it's also possible run this script after merging to do automatic replacement: http://www.pasteall.org/27459/python
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index b0e7f1b4def..8a11c881527 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -2005,7 +2005,7 @@ static void set_axis(Scene *scene, Object *ob, MovieTrackingTrack *track, char
invert_m4(mat);
object_to_mat4(ob, obmat);
- mul_m4_m4m4(mat, obmat, mat);
+ mult_m4_m4m4(mat, mat, obmat);
object_apply_mat4(ob, mat, 0, 0);
}
@@ -2073,14 +2073,14 @@ static int set_floor_exec(bContext *C, wmOperator *op)
invert_m4(mat);
object_to_mat4(parent, obmat);
- mul_m4_m4m4(mat, obmat, mat);
- mul_m4_m4m4(newmat, mat, rot);
+ mult_m4_m4m4(mat, mat, obmat);
+ mult_m4_m4m4(newmat, rot, mat);
object_apply_mat4(parent, newmat, 0, 0);
/* make camera have positive z-coordinate */
if(parent->loc[2]<0) {
invert_m4(rot);
- mul_m4_m4m4(newmat, mat, rot);
+ mult_m4_m4m4(newmat, rot, mat);
object_apply_mat4(parent, newmat, 0, 0);
}