kopia lustrzana https://github.com/vilemduha/blendercam
18 wiersze
335 B
Python
18 wiersze
335 B
Python
from . import nc
|
|
from . import emc2
|
|
|
|
class Creator(emc2.Creator):
|
|
def init(self):
|
|
emc2.Creator.init(self)
|
|
|
|
def program_begin(self, id, comment):
|
|
self.write( ('(' + comment + ')' + '\n') )
|
|
|
|
def tool_defn(self, id, name='', params=None):
|
|
pass
|
|
|
|
def spindle(self, s, clockwise):
|
|
pass
|
|
|
|
nc.creator = Creator()
|