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:
Diffstat (limited to 'curve_tools/__init__.py')
-rw-r--r--curve_tools/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/curve_tools/__init__.py b/curve_tools/__init__.py
index 736e60fb..47297f43 100644
--- a/curve_tools/__init__.py
+++ b/curve_tools/__init__.py
@@ -25,12 +25,13 @@ bl_info = {
"name": "Curve Tools",
"description": "Adds some functionality for bezier/nurbs curve/surface modeling",
"author": "Mackraken",
- "version": (0, 4, 0),
+ "version": (0, 4, 3),
"blender": (2, 80, 0),
"location": "View3D > Tool Shelf > Edit Tab",
"warning": "WIP",
"wiki_url": "",
- "tracker_url": "",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "add_curve/curve_tools.html",
"category": "Add Curve"}
@@ -333,6 +334,8 @@ class VIEW3D_PT_CurvePanel(Panel):
row = col.row(align=True)
row.operator("curvetools.sep_outline", text="Separate Outline or selected")
row = col.row(align=True)
+ row.operator("curvetools.bezier_curve_boolean", text="2D Curve Boolean")
+ row = col.row(align=True)
row.operator("curvetools.bezier_points_fillet", text='Fillet')
row = col.row(align=True)
row.operator("curvetools.bezier_cad_handle_projection", text='Handle Projection')