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-18 08:54:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-18 08:54:04 +0300
commitc48ccb38cbff3ff7d7be4a36b1c13731160a9faa (patch)
tree84dbf8796c7428a02f321de2011d35f007453c80 /source/blender/bmesh/intern/bmesh_query_uv.h
parent4e73ba2cab1b55f5f92715ad04215e830768be82 (diff)
BMesh: utility for checking shared edge with limit argument
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_query_uv.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_query_uv.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_query_uv.h b/source/blender/bmesh/intern/bmesh_query_uv.h
index 293715a8c69..2558f814f32 100644
--- a/source/blender/bmesh/intern/bmesh_query_uv.h
+++ b/source/blender/bmesh/intern/bmesh_query_uv.h
@@ -36,6 +36,12 @@ void BM_face_uv_calc_center_median_weighted(const BMFace *f,
float BM_face_uv_calc_cross(const BMFace *f, const int cd_loop_uv_offset) ATTR_WARN_UNUSED_RESULT
ATTR_NONNULL();
+bool BM_loop_uv_share_edge_check_with_limit(BMLoop *l_a,
+ BMLoop *l_b,
+ const float limit[2],
+ const int cd_loop_uv_offset) ATTR_WARN_UNUSED_RESULT
+ ATTR_NONNULL();
+
bool BM_loop_uv_share_edge_check(BMLoop *l_a,
BMLoop *l_b,
const int cd_loop_uv_offset) ATTR_WARN_UNUSED_RESULT