kopia lustrzana https://github.com/vilemduha/blendercam
20 wiersze
352 B
Python
20 wiersze
352 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()
|