Beispiel #1
0
def writeOutput(fileName=''):
    "Feed a gcode linear move file."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName != '':
        consecution.writeChainTextWithNounMessage(fileName, 'feed')
Beispiel #2
0
def writeOutput(fileName=''):
    "Widen the carving of a gcode file."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName != '':
        consecution.writeChainTextWithNounMessage(fileName, 'widen')
Beispiel #3
0
def writeOutput(fileName=''):
    "Fillet a gcode linear move file. Depending on the settings, either arcPoint, arcRadius, arcSegment, bevel or do nothing."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName != '':
        consecution.writeChainTextWithNounMessage(fileName, 'fillet')
Beispiel #4
0
def writeOutput(fileName=''):
    "Home a gcode linear move file.  Chain home the gcode if it is not already homed. If no fileName is specified, home the first unmodified gcode file in this folder."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName != '':
        consecution.writeChainTextWithNounMessage(fileName, 'home')
Beispiel #5
0
def writeOutput(fileName=''):
    "Chamber a gcode linear move file."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName == '':
        return
    consecution.writeChainTextWithNounMessage(fileName, 'chamber')
Beispiel #6
0
def writeOutput(fileName=''):
    "Outset the carving of a gcode file.  If no fileName is specified, outset the first unmodified gcode file in this folder."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName != '':
        consecution.writeChainTextWithNounMessage(fileName, 'outset')
Beispiel #7
0
def writeOutput(fileName=''):
    "Preface the carving of a gcode file.  If no fileName is specified, preface the first unmodified gcode file in this folder."
    fileName = interpret.getFirstTranslatorFileNameUnmodified(fileName)
    if fileName == '':
        return
    consecution.writeChainTextWithNounMessage(fileName, 'preface')
Beispiel #8
0
def writeOutput( fileName = '' ):
	"Dimension a gcode file."
	fileName = interpret.getFirstTranslatorFileNameUnmodified( fileName )
	if fileName != '':
		consecution.writeChainTextWithNounMessage( fileName, 'dimension' )