skeinforge_tools.export_plugins.gcode_step ($Date: 2008/21/04 $) | index /home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/export_plugins/gcode_step.py |
Gcode step is an export plugin to convert gcode from float position to number of steps.
An export plugin is a script in the export_plugins folder which has the functions getOuput, isArchivable and writeOutput. It is
meant to be run from the export tool. To ensure that the plugin works on platforms which do not handle file capitalization
properly, give the plugin a lower case name.
If the "Add Feedrate Even When Unchanging" checkbox is true, the feedrate will be added even when it did not change
from the previous line. If the "Add Space Between Words" checkbox is true, a space will be added between each gcode
word. If the "Add Z Even When Unchanging" checkbox is true, the z word will be added even when it did not change. The
defaults for these checkboxes are all true.
The "Feedrate Step Length" is the length of one feedrate increment. The "Radius Step Length" is the length of one radius
increment. The "X Step Length" is the length of one x step. The "Y Step Length" is the length of one y step. The "Z Step
Length" is the length of one z step.
The "X Offset " is the distance the x word in a gcode line will be offset. The "Y Offset " is the distance the y word will be
offset. The "Z Offset " is the distance the z word will be offset.
The getOutput function of this script takes a gcode text and returns it with the positions converted into number of steps.
The writeOutput function of this script takes a gcode text and writes that with the positions converted into number of steps.
Classes | ||||||||||||||||||
|
Functions | ||
|
Data | ||
__author__ = 'Enrique Perez (perez_enrique@yahoo.com)' __date__ = '$Date: 2008/21/04 $' __license__ = 'GPL 3.0' absolute_import = _Feature((2, 5, 0, 'alpha', 1), (2, 7, 0, 'alpha', 0), 16384) |
Author | ||
Enrique Perez (perez_enrique@yahoo.com) |