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>2020-02-20 05:25:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-20 05:58:46 +0300
commite233e492df50b9c49bb5c7808aab0ff87a6c8608 (patch)
tree67d1deaeab0eba08e0e0e389dadeb3b80211b8d5 /source/blender/blenlib/intern/math_matrix.c
parent71d6fbcd516db196d68088319ede5d2ffd254d71 (diff)
Cleanup: rename mul_m2v2 to mul_m2_v2
Matches mul_m3_v3
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index 86a08a42247..efc754acab1 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -744,7 +744,7 @@ void mul_v2_m2v2(float r[2], const float mat[2][2], const float vec[2])
r[1] = mat[0][1] * x + mat[1][1] * vec[1];
}
-void mul_m2v2(const float mat[2][2], float vec[2])
+void mul_m2_v2(const float mat[2][2], float vec[2])
{
mul_v2_m2v2(vec, mat, vec);
}