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-07-09 11:23:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-09 11:23:16 +0300
commit0b8221683fa9b4d228728dcf3c2e95389315a4a6 (patch)
treeabefae8463ec47cfb98c7f5a6f3ef7bd68e4b491 /source/blender/editors/uvedit/uvedit_rip.c
parent0b3bf69d3cf578dc84f1bbce15142137bdaac0b4 (diff)
BMesh: add utility functions
- BM_edge_uv_share_vert_check - BM_face_uv_calc_center_median_weighted - BM_loop_at_index_find
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_rip.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_rip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_rip.c b/source/blender/editors/uvedit/uvedit_rip.c
index 14f5ad3ab80..934c2e0457f 100644
--- a/source/blender/editors/uvedit/uvedit_rip.c
+++ b/source/blender/editors/uvedit/uvedit_rip.c
@@ -657,7 +657,7 @@ static UVRipPairs *uv_rip_pairs_from_loop(BMLoop *l_init,
BMLoop *l_other = (l_radial_iter->v == l_step->v) ? l_radial_iter :
l_radial_iter->next;
BLI_assert(l_other->v == l_step->v);
- if (BM_loop_uv_share_vert_check(e_radial, l_other, l_step, cd_loop_uv_offset)) {
+ if (BM_edge_uv_share_vert_check(e_radial, l_other, l_step, cd_loop_uv_offset)) {
if (!UL(l_other)->in_rip_pairs && !UL(l_other)->in_stack) {
BLI_SMALLSTACK_PUSH(stack, l_other);
UL(l_other)->in_stack = true;