Merge branch 'master' into blender2.8
This commit is contained in:
@@ -208,7 +208,7 @@ void ED_operatormacros_mesh(void);
|
||||
void ED_keymap_mesh(struct wmKeyConfig *keyconf);
|
||||
|
||||
/* editmesh_tools.c (could be moved) */
|
||||
void EMBM_project_snap_verts(struct bContext *C, struct ARegion *ar, struct BMEditMesh *em);
|
||||
void EDBM_project_snap_verts(struct bContext *C, struct ARegion *ar, struct BMEditMesh *em);
|
||||
|
||||
|
||||
/* editface.c */
|
||||
|
||||
@@ -1137,7 +1137,7 @@ static int edbm_dupli_extrude_cursor_invoke(bContext *C, wmOperator *op, const w
|
||||
|
||||
/* also project the source, for retopo workflow */
|
||||
if (use_proj) {
|
||||
EMBM_project_snap_verts(C, vc.ar, vc.em);
|
||||
EDBM_project_snap_verts(C, vc.ar, vc.em);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1171,7 +1171,7 @@ static int edbm_dupli_extrude_cursor_invoke(bContext *C, wmOperator *op, const w
|
||||
}
|
||||
|
||||
if (use_proj) {
|
||||
EMBM_project_snap_verts(C, vc.ar, vc.em);
|
||||
EDBM_project_snap_verts(C, vc.ar, vc.em);
|
||||
}
|
||||
|
||||
/* This normally happens when pushing undo but modal operators
|
||||
|
||||
@@ -363,7 +363,7 @@ void MESH_OT_unsubdivide(wmOperatorType *ot)
|
||||
RNA_def_int(ot->srna, "iterations", 2, 1, 1000, "Iterations", "Number of times to unsubdivide", 1, 100);
|
||||
}
|
||||
|
||||
void EMBM_project_snap_verts(bContext *C, ARegion *ar, BMEditMesh *em)
|
||||
void EDBM_project_snap_verts(bContext *C, ARegion *ar, BMEditMesh *em)
|
||||
{
|
||||
Main *bmain = CTX_data_main(C);
|
||||
Object *obedit = em->ob;
|
||||
|
||||
Reference in New Issue
Block a user