Implement libarea improvements for profile Implement libarea pocketing. consolidate occ and libarea pocketing operation into one with algorithm switch consolidate occ aand libarea profile op into one with algorithm switch add basic engraving operation. Add rough UI for profile holding tags implement holding tags for libarea profile. implement basic defaults for depth settings. First move in Drilling is rapid to clearance height. UI needs lots of work but is usable.
10 lines
242 B
Python
10 lines
242 B
Python
import hpgl2d_read as hpgl
|
|
import sys
|
|
|
|
# same as hpgl2d, but with 0.25mm units, instead of 0.01mm
|
|
|
|
class Parser(hpgl.Parser):
|
|
def __init__(self, writer):
|
|
hpgl.Parser.__init__(self, writer)
|
|
self.units_to_mm = 0.25
|