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 ;)
pull/25/head
vilemnovak 2016-01-15 09:22:43 +01:00
rodzic 2ae6914906
commit 7b9ee5f259
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -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")