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-07 15:41:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-07 15:41:37 +0400
commitb1ac23c5bd63cdf5bb6cf27fb62dc332d8d9cc39 (patch)
tree29e3348b47b7180c3295e843f7bd3c84c48aa2fc /source/blender/editors/mesh/editmesh_inset.c
parenteb495b2a8a331e74bdcedd9c0d5415b4c20a136d (diff)
Mesh Tool,
inset interpolation now works for 'inset_region', enabled by default. Example: http://www.graphicall.org/ftp/ideasman42/inset_interpolation_new.png
Diffstat (limited to 'source/blender/editors/mesh/editmesh_inset.c')
-rw-r--r--source/blender/editors/mesh/editmesh_inset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/mesh/editmesh_inset.c b/source/blender/editors/mesh/editmesh_inset.c
index c9a96018e2a..7a879d398f1 100644
--- a/source/blender/editors/mesh/editmesh_inset.c
+++ b/source/blender/editors/mesh/editmesh_inset.c
@@ -209,9 +209,9 @@ static int edbm_inset_calc(wmOperator *op)
}
else {
EDBM_op_init(em, &bmop, op,
- "inset_region faces=%hf use_boundary=%b use_even_offset=%b use_relative_offset=%b "
- "thickness=%f depth=%f use_outset=%b",
- BM_ELEM_SELECT, use_boundary, use_even_offset, use_relative_offset,
+ "inset_region faces=%hf use_boundary=%b use_even_offset=%b use_relative_offset=%b"
+ " use_interpolate=%b thickness=%f depth=%f use_outset=%b",
+ BM_ELEM_SELECT, use_boundary, use_even_offset, use_relative_offset, use_interpolate,
thickness, depth, use_outset);
}
BMO_op_exec(em->bm, &bmop);