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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-22 14:17:55 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-22 14:17:55 +0400
commit6540bb1375b025ef0b65bc65a54b7f8ea6cfed8e (patch)
tree39a83f23534e1d998550d5a0d6455472527e34ca /source/blender/blenlib/BLI_math_vector.h
parent347900a3d6a9bd1b53fb8b8e48c4d7e9f7011ffe (diff)
Add some missing const's
Diffstat (limited to 'source/blender/blenlib/BLI_math_vector.h')
-rw-r--r--source/blender/blenlib/BLI_math_vector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h
index 93d463e17ea..3fceef36e2a 100644
--- a/source/blender/blenlib/BLI_math_vector.h
+++ b/source/blender/blenlib/BLI_math_vector.h
@@ -168,8 +168,8 @@ void minmax_v3v3_v3(float min[3], float max[3], const float vec[3]);
/***************************** Array Functions *******************************/
/* attempted to follow fixed length vertex functions. names could be improved*/
void range_vni(int *array, const int size, const int start);
-void mul_vn_fl(float *array, int size, const float f);
-void mul_vn_vn_fl(float *array_tar, const float *array_src, int size, const float f);
+void mul_vn_fl(float *array, const int size, const float f);
+void mul_vn_vn_fl(float *array_tar, const float *array_src, const int size, const float f);
void add_vn_vn(float *array_tar, const float *array_src, const int size);
void fill_vni(int *array_tar, const int size, const int val);