From 7b9ee5f25920e324d4a9ffa4e58009d2c900a704 Mon Sep 17 00:00:00 2001 From: vilemnovak Date: Fri, 15 Jan 2016 09:22:43 +0100 Subject: [PATCH] expose various curve operators - again Old version didn't support tabs - now there's a tab called Blender CAM where we can add various usefull tools. now there are: booleans intarsion overcuts Silhouette offset (works also for meshes) remove doubles I will welcome if this gets added to docs ;) --- scripts/addons/cam/ui.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/addons/cam/ui.py b/scripts/addons/cam/ui.py index b1e8a54c..bd5c133c 100644 --- a/scripts/addons/cam/ui.py +++ b/scripts/addons/cam/ui.py @@ -702,13 +702,15 @@ class VIEW3D_PT_tools_curvetools(bpy.types.Panel): bl_region_type = 'TOOLS' bl_context = "objectmode" bl_label = "Curve CAM Tools" - bl_options = {'DEFAULT_CLOSED'} - + bl_category = "Blender CAM" + #bl_options = {'DEFAULT_CLOSED'} + def draw(self, context): layout = self.layout #col = layout.column(align=True) #lt = context.window_manager.looptools layout.operator("object.curve_boolean") layout.operator("object.curve_intarsion") + layout.operator("object.curve_overcuts") layout.operator("object.silhouete_offset") layout.operator("object.curve_remove_doubles")