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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--animation_add_corrective_shape_key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/animation_add_corrective_shape_key.py b/animation_add_corrective_shape_key.py
index 0c7e77a9..94d66901 100644
--- a/animation_add_corrective_shape_key.py
+++ b/animation_add_corrective_shape_key.py
@@ -199,7 +199,7 @@ def func_add_corrective_pose_shape( source, target):
Gx = list((dx[0][i] - dx[1][i])/epsilon)
Gy = list((dx[2][i] - dx[3][i])/epsilon)
Gz = list((dx[4][i] - dx[5][i])/epsilon)
- G = mathutils.Matrix(Gx, Gy, Gz)
+ G = mathutils.Matrix((Gx, Gy, Gz))
G = flip_matrix_direction(G)
x[i] += (targetx[i] - mapx[i]) * G