From 05c4c2409ea4618704df28258866e39a8a53b3cb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 16 May 2015 10:18:38 +1000 Subject: BMesh: add sharp edge delimiter --- source/blender/editors/mesh/editmesh_select.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/editors') diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index 288909e382f..bf32008ee45 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -2363,6 +2363,12 @@ static bool select_linked_delimit_test(BMEdge *e, int delimit) } } + if (delimit & BMO_DELIM_SHARP) { + if (BM_elem_flag_test(e, BM_ELEM_SMOOTH) == 0) { + return true; + } + } + if (delimit & BMO_DELIM_NORMAL) { if (!BM_edge_is_contiguous(e)) { return true; -- cgit v1.2.3