Update __init__.py

house keeping
pull/173/head
Alain Pelletier 2021-02-13 15:56:24 -04:00 zatwierdzone przez GitHub
rodzic 027c1675fa
commit c657942508
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -400,19 +400,20 @@ def getStrategyList(scene, context):
('CIRCLES', 'Circles', 'Circles path'),
('OUTLINEFILL', 'Outline Fill',
'Detect outline and fill it with paths as pocket. Then sample these paths on the 3d surface'),
('CARVE', 'Carve', 'Pocket operation')
('CARVE', 'Carve', 'Pocket operation'),
('WATERLINE', 'Waterline - Roughing -below zero', 'Waterline paths - constant z below zero')
]
if use_experimental:
items.extend([('WATERLINE', 'Waterline - Roughing -below zero', 'Waterline paths - constant z below zero'),
('CURVE', 'Curve to Path - EXPERIMENTAL', 'Curve object gets converted directly to path'),
('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!'),
items.extend([('CURVE', 'Curve to Path - EXPERIMENTAL', '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 '),
('PROJECTED_CURVE', 'Projected curve - EXPERIMENTAL', 'project 1 curve towards other curve')])
return items
#('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!'),
class camOperation(bpy.types.PropertyGroup):
name: bpy.props.StringProperty(name="Operation Name", default="Operation", update=updateRest)