From ccda189fc5f4bb7800f576e21e6c26b28094723c Mon Sep 17 00:00:00 2001 From: Alain Pelletier <33393909+pppalain@users.noreply.github.com> Date: Fri, 4 Jun 2021 16:41:15 -0300 Subject: [PATCH] added medial axis by request --- scripts/addons/cam/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/addons/cam/__init__.py b/scripts/addons/cam/__init__.py index 583136c5..862cd0e0 100644 --- a/scripts/addons/cam/__init__.py +++ b/scripts/addons/cam/__init__.py @@ -412,9 +412,9 @@ def getStrategyList(scene, context): ('WATERLINE', 'Waterline - Roughing -below zero', 'Waterline paths - constant z below zero'), ('CURVE', 'Curve to Path', 'Curve object gets converted directly to path') ] - # 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 '), + 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.'), # ('CRAZY', 'Crazy path - EXPERIMENTAL', 'Crazy paths - dont even think about using this!'), # ('PROJECTED_CURVE', 'Projected curve - EXPERIMENTAL', 'project 1 curve towards other curve')])