From 0f597b57b91e69b6674e60d9abe4051793fadb6e Mon Sep 17 00:00:00 2001 From: abosafia Date: Fri, 11 Jun 2021 22:55:48 +0200 Subject: [PATCH] remove medial axes from experimental --- scripts/addons/cam/__init__.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/addons/cam/__init__.py b/scripts/addons/cam/__init__.py index 862cd0e0..58215094 100644 --- a/scripts/addons/cam/__init__.py +++ b/scripts/addons/cam/__init__.py @@ -410,12 +410,11 @@ def getStrategyList(scene, context): 'Detect outline and fill it with paths as pocket. Then sample these paths on the 3d surface'), ('CARVE', 'Project curve to surface', 'Engrave the curve path to surface'), ('WATERLINE', 'Waterline - Roughing -below zero', 'Waterline paths - constant z below zero'), - ('CURVE', 'Curve to Path', 'Curve object gets converted directly to path') + ('CURVE', 'Curve to Path', 'Curve object gets converted directly to path'),('MEDIAL_AXIS', 'Medial axis - EXPERIMENTAL', + 'Medial axis, must be used with V or ball cutter, for engraving various width shapes with a single stroke ') ] - if use_experimental: - items.extend([('MEDIAL_AXIS', 'Medial axis - EXPERIMENTAL', - 'Medial axis, must be used with V or ball cutter, for engraving various width shapes with a single stroke ')]); - # ('PENCIL', 'Pencil - EXPERIMENTAL','Pencil operation - detects negative corners in the model and mills only those.'), + # if use_experimental: + # items.extend([('PENCIL', 'Pencil - EXPERIMENTAL','Pencil operation - detects negative corners in the model and mills only those.'), # ('CRAZY', 'Crazy path - EXPERIMENTAL', 'Crazy paths - dont even think about using this!'), # ('PROJECTED_CURVE', 'Projected curve - EXPERIMENTAL', 'project 1 curve towards other curve')]) return items