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-12-13 19:32:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-13 19:53:19 +0400
commitc456cd94b23af53b53ac13219ea488ed6e7eb5c2 (patch)
treedf6e47ecd7eeab4b38c4d1121ec5a8c461b53974 /release
parent52c5365c002acbaa45be28928ab117b394e3d380 (diff)
Curve Handle Recalculate (Ctrl+N)
T37799 Patch from Simon Repp with added option to recalculate handle lengths.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8174ef3261a..0461a45c988 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2356,6 +2356,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(Menu):
layout.separator()
layout.operator_menu_enum("curve.handle_type_set", "type")
+ layout.operator("curve.normals_make_consistent")
layout.separator()
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 5a750b7b626..d3d1f628a43 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -292,6 +292,9 @@ class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):
row.operator("curve.handle_type_set", text="Free").type = 'FREE_ALIGN'
col = layout.column(align=True)
+ col.operator("curve.normals_make_consistent")
+
+ col = layout.column(align=True)
col.label(text="Modeling:")
col.operator("curve.extrude_move", text="Extrude")
col.operator("curve.subdivide")