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:
authormeta-androcto <meta.androcto1@gmail.com>2017-05-25 02:18:19 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-05-25 02:19:22 +0300
commit75e820fb91c3712c877477527c2156ad5452344b (patch)
treee4a7f3562164e9313ca853c3f34b62a6fe07470d /mesh_extra_tools
parent331f2982d714f51cb6ded56b3f6b10ba004ff62f (diff)
edit tools, EdgeRoundifier, select all & remove doubles
Diffstat (limited to 'mesh_extra_tools')
-rw-r--r--mesh_extra_tools/mesh_edge_roundifier.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesh_extra_tools/mesh_edge_roundifier.py b/mesh_extra_tools/mesh_edge_roundifier.py
index 961e8d0b..e8ef63b3 100644
--- a/mesh_extra_tools/mesh_edge_roundifier.py
+++ b/mesh_extra_tools/mesh_edge_roundifier.py
@@ -633,6 +633,9 @@ class EdgeRoundifier(Operator):
bpy.ops.object.mode_set(mode='OBJECT')
bm.to_mesh(mesh)
bpy.ops.object.mode_set(mode='EDIT')
+ bpy.ops.mesh.select_all(action='SELECT')
+ bpy.ops.mesh.remove_doubles()
+
bm.free()
return {'FINISHED'}