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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-26 04:42:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-26 04:42:21 +0400
commit94b8b8913e0283850cd2f05361a8980ecbe4870c (patch)
tree981cad884ee4958e60ed2436db1d5a32473e1dd9 /source/blender/blenlib
parentdf4a8a4dab9536cb153fedd0c12fa3e8dc16f7b1 (diff)
rename lattice influence to strength from r45144 (other deform modifiers call it strength too)
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c
index e7c96ce3dc3..65600a31042 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -293,7 +293,7 @@ void project_v3_plane(float v[3], const float n[3], const float p[3])
float mul;
sub_v3_v3v3(vector, v, p);
- mul = dot_v3v3(vector, n)/len_squared_v3(n);
+ mul = dot_v3v3(vector, n) / len_squared_v3(n);
mul_v3_v3fl(vector, n, mul);