Gcode time segment 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 getOutput function, the globalIsReplaceable variable and if it's output is not replaceable, the writeOutput function. 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.
The getOutput function of this script takes a gcode text and returns it with the positions converted into number of steps and time. The writeOutput function of this script takes a gcode text and writes that with the positions converted into number of steps and time.
Settings
Add Space Between Words
Offset
X Offset
Y Offset
Z Offset
Step
Extrusion Step
Time Step
X Step
Y Step
Z Step
Settings
Add Space Between Words
Default is on.
When selected, a space will be added between each gcode word.
Offset
X Offset
Default is zero.
Defines the X Offset.
Y Offset
Default is zero.
Defines the Y Offset.
Z Offset
Default is zero.
Defines the Z Offset.
Step
Extrusion Step
Default is 0.01 mm.
Defines the radius step length.
Time Step
Default is 1 microsecond(mcs).
Defines the time step duration.
X Step
Default is 0.1 mm.
Defines the X axis step length.
Y Step
Default is 0.1 mm.
Defines the Y axis step length.
Z Step
Default is 0.01 mm.
Defines the Z axis step length.
Classes | ||||||||||||||||||
|
Functions | ||
|
Data | ||
__author__ = 'Enrique Perez (perez_enrique@yahoo.com)' __date__ = '$Date: 2008/21/04 $' __license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html' absolute_import = _Feature((2, 5, 0, 'alpha', 1), (2, 7, 0, 'alpha', 0), 16384) globalIsReplaceable = True |
Author | ||
Enrique Perez (perez_enrique@yahoo.com) |