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.
23 lines
647 B
Python
23 lines
647 B
Python
################################################################################
|
|
# siegkx1.py
|
|
#
|
|
# Post Processor for the Sieg KX1 machine
|
|
# It is just an ISO machine, but I don't want the tool definition lines
|
|
#
|
|
# Dan Heeks, 5th March 2009
|
|
|
|
import nc
|
|
import iso_modal
|
|
import math
|
|
|
|
################################################################################
|
|
class Creator(iso_modal.Creator):
|
|
|
|
def __init__(self):
|
|
iso_modal.Creator.__init__(self)
|
|
self.output_tool_definitions = False
|
|
|
|
################################################################################
|
|
|
|
nc.creator = Creator()
|