Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-02 08:57:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-02 08:57:50 +0300
commit0973ea34684ed6efdb3e745e5ae5fe148c4f3ffe (patch)
treea309f8ec8ecb9e994d6ab315a17bcfe3c577426c /mesh_tools
parentd504a09ab5eae0e07863a0a816bc1af935f50f40 (diff)
mesh_tools/mesh_relax: pass in smooth factor
The default is now zero.
Diffstat (limited to 'mesh_tools')
-rw-r--r--mesh_tools/mesh_relax.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_tools/mesh_relax.py b/mesh_tools/mesh_relax.py
index a1dabf3d..8416ea9a 100644
--- a/mesh_tools/mesh_relax.py
+++ b/mesh_tools/mesh_relax.py
@@ -75,7 +75,7 @@ def relax_mesh(context):
# run smooth operator to relax the mesh
bpy.ops.object.mode_set(mode='EDIT')
- bpy.ops.mesh.vertices_smooth()
+ bpy.ops.mesh.vertices_smooth(factor=0.5)
bpy.ops.object.mode_set(mode='OBJECT')
# apply the modifier