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.
21 lines
472 B
Python
Executable File
21 lines
472 B
Python
Executable File
import nc
|
|
import iso
|
|
|
|
class Creator(iso.Creator):
|
|
def init(self):
|
|
iso.Creator.init(self)
|
|
|
|
def SPACE(self): return(' ')
|
|
|
|
def program_begin(self, id, comment):
|
|
self.write( ('(' + 'GCode created using the HeeksCNC Mach3 post processor' + ')' + '\n') )
|
|
self.write( ('(' + comment + ')' + '\n') )
|
|
|
|
def tool_change(self, id):
|
|
self.write('G43H%i'% id +'\n')
|
|
self.write((self.TOOL() % id) + '\n')
|
|
self.t = id
|
|
|
|
nc.creator = Creator()
|
|
|