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:
authorAlexander Pinzon <apinzonf@gmail.com>2012-06-26 03:35:29 +0400
committerAlexander Pinzon <apinzonf@gmail.com>2012-06-26 03:35:29 +0400
commit5574114a3229e056019dd0257108c95247521fae (patch)
treeef4f291b37e023476fa4722b393f18b68f86b3a3 /source/blender/editors/mesh/editmesh_tools.c
parent7a11881ad0f7cdc65d2b8c2485c607dc627ed01b (diff)
Change in the distribution of the layout and change in the limits of the parameters
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index ae3859dbfa3..2fc09216740 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -1667,14 +1667,14 @@ void MESH_OT_vertices_smooth_laplacian(wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
- RNA_def_int(ot->srna, "repeat", 1, 1, 50,
- "Number of iterations to smooth the mesh", "", 1, 50);
- RNA_def_float(ot->srna, "lambda", 0.00005f, 0.0000001f, 100.0f,
- "Lambda factor", "", 0.0000001f, 100.0f);
- RNA_def_float(ot->srna, "lambda_border", 0.00005f, 0.0000001f, 100.0f,
- "Lambda factor in border", "", 0.0000001f, 100.0f);
- RNA_def_float(ot->srna, "min_area", 0.00001f, 0.0000000000000001f, 100.0f,
- "Minimum area permitted", "", 0.0000000000000001f, 100.0f);
+ RNA_def_int(ot->srna, "repeat", 1, 1, 200,
+ "Number of iterations to smooth the mesh", "", 1, 200);
+ RNA_def_float(ot->srna, "lambda", 0.00005f, 0.0000001f, 1000.0f,
+ "Lambda factor", "", 0.0000001f, 1000.0f);
+ RNA_def_float(ot->srna, "lambda_border", 0.00005f, 0.0000001f, 1000.0f,
+ "Lambda factor in border", "", 0.0000001f, 1000.0f);
+ RNA_def_float(ot->srna, "min_area", 0.00001f, 0.0000000000000001f, 1000.0f,
+ "Minimum area permitted", "", 0.0000000000000001f, 1000.0f);
RNA_def_boolean(ot->srna, "use_x", 1, "Smooth X Axis", "Smooth object along X axis");
RNA_def_boolean(ot->srna, "use_y", 1, "Smooth Y Axis", "Smooth object along Y axis");
RNA_def_boolean(ot->srna, "use_z", 1, "Smooth Z Axis", "Smooth object along Z axis");