From 193b38cc4776298feccd8eb6e47daa820b3b9e68 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 4 Jan 2016 15:03:18 +1100 Subject: Remove select-next-loop operator Taken from original bmesh-branch but doesn't give useful results (misses selection flushing). --- source/blender/editors/mesh/editmesh_select.c | 51 --------------------------- source/blender/editors/mesh/mesh_intern.h | 1 - source/blender/editors/mesh/mesh_ops.c | 2 -- 3 files changed, 54 deletions(-) (limited to 'source') diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index bcc8d6d38f9..f46b208fdb3 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -3791,57 +3791,6 @@ void MESH_OT_select_axis(wmOperatorType *ot) RNA_def_float(ot->srna, "threshold", 0.0001f, 0.000001f, 50.0f, "Threshold", "", 0.00001f, 10.0f); } - -static int edbm_select_next_loop_exec(bContext *C, wmOperator *UNUSED(op)) -{ - Object *obedit = CTX_data_edit_object(C); - BMEditMesh *em = BKE_editmesh_from_object(obedit); - BMFace *f; - BMVert *v; - BMIter iter; - - BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { - BM_elem_flag_disable(v, BM_ELEM_TAG); - } - - BM_ITER_MESH (f, &iter, em->bm, BM_FACES_OF_MESH) { - BMLoop *l; - BMIter liter; - - BM_ITER_ELEM (l, &liter, f, BM_LOOPS_OF_FACE) { - if (BM_elem_flag_test(l->v, BM_ELEM_SELECT)) { - BM_elem_flag_enable(l->next->v, BM_ELEM_TAG); - BM_vert_select_set(em->bm, l->v, false); - } - } - } - - BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { - if (BM_elem_flag_test(v, BM_ELEM_TAG)) { - BM_vert_select_set(em->bm, v, true); - } - } - - WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); - return OPERATOR_FINISHED; -} - -void MESH_OT_select_next_loop(wmOperatorType *ot) -{ - /* identifiers */ - ot->name = "Select Next Loop"; - ot->idname = "MESH_OT_select_next_loop"; - ot->description = "Select next edge loop adjacent to a selected loop"; - - /* api callbacks */ - ot->exec = edbm_select_next_loop_exec; - ot->poll = ED_operator_editmesh; - - /* flags */ - ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; -} - - static int edbm_region_to_loop_exec(bContext *C, wmOperator *UNUSED(op)) { Object *obedit = CTX_data_edit_object(C); diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h index 13ac0f6770d..08b4d1aee45 100644 --- a/source/blender/editors/mesh/mesh_intern.h +++ b/source/blender/editors/mesh/mesh_intern.h @@ -161,7 +161,6 @@ void MESH_OT_select_non_manifold(struct wmOperatorType *ot); void MESH_OT_select_random(struct wmOperatorType *ot); void MESH_OT_select_ungrouped(struct wmOperatorType *ot); void MESH_OT_select_axis(struct wmOperatorType *ot); -void MESH_OT_select_next_loop(struct wmOperatorType *ot); void MESH_OT_region_to_loop(struct wmOperatorType *ot); void MESH_OT_loop_to_region(struct wmOperatorType *ot); void MESH_OT_shortest_path_select(struct wmOperatorType *ot); diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index e24dfa3d123..e04bb219a74 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -173,8 +173,6 @@ void ED_operatortypes_mesh(void) WM_operatortype_append(MESH_OT_bevel); - WM_operatortype_append(MESH_OT_select_next_loop); - WM_operatortype_append(MESH_OT_bridge_edge_loops); WM_operatortype_append(MESH_OT_inset); WM_operatortype_append(MESH_OT_offset_edge_loops); -- cgit v1.2.3