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>2013-04-15 12:43:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-15 12:43:17 +0400
commitf294b3b082ee239df54e3fcd49d6f5611fdeee72 (patch)
tree499803fdf0eb43ee2fe4e9fcfc9d84467d10083e /source/blender/editors/mesh/editmesh_add.c
parentd1f90abfa92d3bf46f6424163ea00831d3b8d044 (diff)
minor edits to DM_update_weight_mcol(), skip getting vars when in editmode, also remove old/invalid comment.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_add.c')
-rw-r--r--source/blender/editors/mesh/editmesh_add.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c
index 2f90f63574d..b7a815c3219 100644
--- a/source/blender/editors/mesh/editmesh_add.c
+++ b/source/blender/editors/mesh/editmesh_add.c
@@ -53,8 +53,6 @@
/* ********* add primitive operators ************* */
-/* BMESH_TODO: 'state' is not a good name, should be flipped and called 'was_editmode',
- * or at least something more descriptive */
static Object *make_prim_init(bContext *C, const char *idname,
float *dia, float mat[4][4],
bool *was_editmode, const float loc[3], const float rot[3], const unsigned int layer)
@@ -246,12 +244,11 @@ static int add_primitive_cylinder_exec(bContext *C, wmOperator *op)
BMEditMesh *em;
float loc[3], rot[3], mat[4][4], dia;
bool enter_editmode;
- int cap_end, cap_tri;
unsigned int layer;
bool was_editmode;
-
- cap_end = RNA_enum_get(op->ptr, "end_fill_type");
- cap_tri = (cap_end == 2);
+ const int end_fill_type = RNA_enum_get(op->ptr, "end_fill_type");
+ const bool cap_end = (end_fill_type != 0);
+ const bool cap_tri = (end_fill_type == 2);
ED_object_add_generic_get_opts(C, op, loc, rot, &enter_editmode, &layer, NULL);
obedit = make_prim_init(C, CTX_DATA_(BLF_I18NCONTEXT_ID_MESH, "Cylinder"), &dia, mat, &was_editmode, loc, rot, layer);
@@ -308,12 +305,11 @@ static int add_primitive_cone_exec(bContext *C, wmOperator *op)
BMEditMesh *em;
float loc[3], rot[3], mat[4][4], dia;
bool enter_editmode;
- int cap_end, cap_tri;
unsigned int layer;
bool was_editmode;
-
- cap_end = RNA_enum_get(op->ptr, "end_fill_type");
- cap_tri = (cap_end == 2);
+ const int end_fill_type = RNA_enum_get(op->ptr, "end_fill_type");
+ const bool cap_end = (end_fill_type != 0);
+ const bool cap_tri = (end_fill_type == 2);
ED_object_add_generic_get_opts(C, op, loc, rot, &enter_editmode, &layer, NULL);
obedit = make_prim_init(C, CTX_DATA_(BLF_I18NCONTEXT_ID_MESH, "Cone"), &dia, mat, &was_editmode, loc, rot, layer);