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-07-28 23:53:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-28 23:53:46 +0400
commit4f02555004575936cd0b2623af7a324128e5258c (patch)
treeb38959781e705db1736d030729f4a1dbfdb918a1 /release
parentc754eaa0f9ace116250d232f806beabb27d28951 (diff)
new mesh tool for cleaning up meshes, splits up non-planar faces while they exceed a given angle threshold
(access from the 'Mesh -> Clean' menu).
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 18008553368..689b1a9c9b7 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2092,6 +2092,7 @@ class VIEW3D_MT_edit_mesh_clean(Menu):
layout = self.layout
layout.operator("mesh.fill_holes")
+ layout.operator("mesh.vert_connect_nonplanar")
class VIEW3D_MT_edit_mesh_delete(Menu):