remove medial axes from experimental

pull/188/head
abosafia 2021-06-11 22:55:48 +02:00
rodzic 0d2501b226
commit 0f597b57b9
1 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -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'), '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'), ('CARVE', 'Project curve to surface', 'Engrave the curve path to surface'),
('WATERLINE', 'Waterline - Roughing -below zero', 'Waterline paths - constant z below zero'), ('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: # if use_experimental:
items.extend([('MEDIAL_AXIS', 'Medial axis - EXPERIMENTAL', # items.extend([('PENCIL', 'Pencil - EXPERIMENTAL','Pencil operation - detects negative corners in the model and mills only those.'),
'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!'), # ('CRAZY', 'Crazy path - EXPERIMENTAL', 'Crazy paths - dont even think about using this!'),
# ('PROJECTED_CURVE', 'Projected curve - EXPERIMENTAL', 'project 1 curve towards other curve')]) # ('PROJECTED_CURVE', 'Projected curve - EXPERIMENTAL', 'project 1 curve towards other curve')])
return items return items