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-09-06 03:22:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-06 03:22:47 +0400
commitdf51ab27ed974b3daf0c9c14e334be154e1a4b73 (patch)
tree9be7779c11d80c5baa11be5e5166c201c61f4953 /source/blender/blenlib/BLI_math_vector.h
parent3f7b4916e9bcd89bb289f3b1d5749c5bcb956f6a (diff)
code cleanup: BM_face_legal_splits() was doing some redundant assignments.
Diffstat (limited to 'source/blender/blenlib/BLI_math_vector.h')
-rw-r--r--source/blender/blenlib/BLI_math_vector.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h
index eef8c9daaef..6c81ca3f0a9 100644
--- a/source/blender/blenlib/BLI_math_vector.h
+++ b/source/blender/blenlib/BLI_math_vector.h
@@ -81,6 +81,7 @@ MINLINE void copy_v4db_v4fl(double r[4], const float a[4]);
/********************************* Arithmetic ********************************/
+MINLINE void add_v2_fl(float r[2], float f);
MINLINE void add_v3_fl(float r[3], float f);
MINLINE void add_v4_fl(float r[4], float f);
MINLINE void add_v2_v2(float r[2], const float a[2]);