kopia lustrzana https://github.com/vilemduha/blendercam
25 wiersze
557 B
Python
25 wiersze
557 B
Python
################################################################################
|
|
# iso_crc.py
|
|
#
|
|
# a class derived from iso machine, with Cutter Radius Compensation turned on.
|
|
#
|
|
# Dan Heeks, 4th May 2010
|
|
|
|
from . import nc
|
|
from . import iso
|
|
import math
|
|
|
|
################################################################################
|
|
|
|
|
|
class Creator(iso.Creator):
|
|
def __init__(self):
|
|
iso.Creator.__init__(self)
|
|
self.useCrc = True
|
|
|
|
|
|
################################################################################
|
|
|
|
|
|
nc.creator = Creator()
|