From b0f87935a8d0de0f9ed886c7f26f1b7af41ed12a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 14 Jan 2010 10:59:42 +0000 Subject: spelling errors, no real changes to code. --- source/blender/blenlib/intern/math_vector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib') 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]; -- cgit v1.2.3