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/editors/uvedit
parent71d6fbcd516db196d68088319ede5d2ffd254d71 (diff)
Cleanup: rename mul_m2v2 to mul_m2_v2
Matches mul_m3_v3
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index e4d73c2b229..91e8c36ea35 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -503,7 +503,7 @@ static void p_chart_uv_transform(PChart *chart, float mat[2][2])
PVert *v;
for (v = chart->verts; v; v = v->nextlink) {
- mul_m2v2(mat, v->uv);
+ mul_m2_v2(mat, v->uv);
}
}