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>2010-01-14 13:59:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-14 13:59:42 +0300
commitb0f87935a8d0de0f9ed886c7f26f1b7af41ed12a (patch)
tree5b3a22868f1b2eaedca523267cee05fa3fd71766 /source/blender/blenlib
parent4371c3b0444bdaa8f47e43692095a70c388b57f2 (diff)
spelling errors, no real changes to code.
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 d99d96d28ff..bb7c65c4884 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -69,7 +69,7 @@ void interp_v3_v3v3v3(float p[3], const float v1[3], const float v2[3], const fl
}
/* weight 3 vectors,
- * 'w' must be unit length but is not a vector, just 3 weights */
+ * 'w' must be unit length but is not a vector, just 4 weights */
void interp_v3_v3v3v3v3(float p[3], const float v1[3], const float v2[3], const float v3[3], const float v4[3], const float w[4])
{
p[0] = v1[0]*w[0] + v2[0]*w[1] + v3[0]*w[2] + v4[0]*w[3];