kopia lustrzana https://github.com/vilemduha/blendercam
25 wiersze
568 B
Python
25 wiersze
568 B
Python
################################################################################
|
|
# emc2b_crc.py
|
|
#
|
|
# a class derived from emc2b machine, with Cutter Radius Compensation turned on.
|
|
#
|
|
# Dan Heeks, 18th Jan 2011
|
|
|
|
from . import nc
|
|
from . import emc2b
|
|
import math
|
|
|
|
################################################################################
|
|
|
|
|
|
class Creator(emc2b.Creator):
|
|
|
|
def __init__(self):
|
|
emc2b.Creator.__init__(self)
|
|
self.useCrc = True
|
|
|
|
################################################################################
|
|
|
|
|
|
nc.creator = Creator()
|