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>2014-09-29 09:48:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-29 09:48:51 +0400
commit5b027bd6dd0370855d979e46d7dff0c144ca37d6 (patch)
tree8434965449df4666578cb62a74c7b618ed3f5529 /source/blender/bmesh/operators/bmo_utils.c
parent0334be9f7f5abdda0ee48b8b39b694ddb93405dd (diff)
Cleanup: remove smooth_ from 'smooth_factor'
redundant, just call factor as smooth modifier does.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_utils.c')
-rw-r--r--source/blender/bmesh/operators/bmo_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_utils.c b/source/blender/bmesh/operators/bmo_utils.c
index 1634aa25281..a06d40c8c0f 100644
--- a/source/blender/bmesh/operators/bmo_utils.c
+++ b/source/blender/bmesh/operators/bmo_utils.c
@@ -291,7 +291,7 @@ void bmo_smooth_vert_exec(BMesh *UNUSED(bm), BMOperator *op)
BMEdge *e;
float (*cos)[3] = MEM_mallocN(sizeof(*cos) * BMO_slot_buffer_count(op->slots_in, "verts"), __func__);
float *co, *co2, clip_dist = BMO_slot_float_get(op->slots_in, "clip_dist");
- float fac = BMO_slot_float_get(op->slots_in, "smooth_factor");
+ const float fac = BMO_slot_float_get(op->slots_in, "factor");
int i, j, clipx, clipy, clipz;
int xaxis, yaxis, zaxis;