Commit: 193b38cc4776298feccd8eb6e47daa820b3b9e68
Author: Campbell Barton
Date:   Mon Jan 4 15:03:18 2016 +1100
Branches: master
https://developer.blender.org/rB193b38cc4776298feccd8eb6e47daa820b3b9e68

Remove select-next-loop operator

Taken from original bmesh-branch but doesn't give useful results
(misses selection flushing).

===================================================================

M       source/blender/editors/mesh/editmesh_select.c
M       source/blender/editors/mesh/mesh_intern.h
M       source/blender/editors/mesh/mesh_ops.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_select.c 
b/source/blender/editors/mesh/editmesh_select.c
index bcc8d6d..f46b208 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 13ac0f6..08b4d1a 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 e24dfa3..e04bb21 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);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to