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>2021-02-11 00:40:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-11 00:40:16 +0300
commit16c621e5295767ccfc19f801802a7f480eb0c3b2 (patch)
tree80ed325b2556e01f418a6f44a65479d2e2211c0f /source/blender/blenlib/BLI_math_vector.h
parent1a52b5f7d3cc46d98141c32cc7507bbf29f83ebb (diff)
parent4719836eca2e661ac79fbd1448fdc876b62af458 (diff)
Merge branch 'blender-v2.92-release'
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 1df22f7c2c9..bb1e1a1c38d 100644
--- a/source/blender/blenlib/BLI_math_vector.h
+++ b/source/blender/blenlib/BLI_math_vector.h
@@ -309,6 +309,7 @@ void interp_v4_v4v4_uchar(unsigned char target[4],
void mid_v3_v3v3(float r[3], const float a[3], const float b[3]);
void mid_v2_v2v2(float r[2], const float a[2], const float b[2]);
void mid_v3_v3v3v3(float v[3], const float v1[3], const float v2[3], const float v3[3]);
+void mid_v2_v2v2v2(float v[2], const float v1[2], const float v2[2], const float v3[2]);
void mid_v3_v3v3v3v3(
float v[3], const float v1[3], const float v2[3], const float v3[3], const float v4[3]);
void mid_v3_v3_array(float r[3], const float (*vec_arr)[3], const unsigned int nbr);