gcode_output
index
/usr/share/reprap/plugins/output/gcode_output.py

Licensed under GPL v2 and the 'I'm not going to help you kill people licence'. The latter overrules the former.
        
I'm not going to help you kill people licence v1.1:
The use of this software in any form for any purposes relating to any form of military activity or
research either directly or via subcontracts is strictly prohibited.
Any company or organisation affiliated with any military organisations either directly or through
subcontracts are strictly prohibited from using any part of this software.
Individuals who work for the above mentioned organisations working on PERSONAL or open source projects unrelated
to above mentioned organisations in their own time may use this software.
 
GNU licence:        
RepRap Gerber Plotter is free software; you can redistribute it and/or modify it 
under the terms of the GNU General Public License as published by the Free Software Foundation; 
either version 2 of the License, or (at your option) any later version.
 
RepRap Gerber Plotter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
See the GNU General Public License for more details. You should have received a copy of 
the GNU General Public License along with File Hunter; if not, write to 
the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

 
Modules
       
reprap

 
Classes
       
GCode
reprap.baseplotters.ExportPlotter(threading.Thread)
output

 
class GCode
    # Class for gcode file
 
  Methods defined here:
__init__(self)
addCoordinate(self, x, y, z)
generateGCode(self)
writeFile(self, fileName)

 
class output(reprap.baseplotters.ExportPlotter)
    
Method resolution order:
output
reprap.baseplotters.ExportPlotter
threading.Thread
threading._Verbose
__builtin__.object

Methods defined here:
cartesianMove(self, x, y, z, units=1)
# Translate a cartesian movement into whatever the output plugin does with it (called locally and by toolhead)
loadPreferences(self)
# Load plotter preferences
run(self)
# Start plot (as new thread)

Methods inherited from reprap.baseplotters.ExportPlotter:
__init__(self, toolpath, toolhead, feedbackHandler=False, outputFilename=False)
Create output plotter plugin with toolpath (reprap.toolpath.Object object), toolhead (toolhead plugin object), feedback handler (feedback handler object) and output file name
terminate(self)
Tell thread to terminate ASAP (result of GUI 'Stop' button)

Methods inherited from threading.Thread:
__repr__(self)
getName(self)
isAlive(self)
isDaemon(self)
join(self, timeout=None)
setDaemon(self, daemonic)
setName(self, name)
start(self)

Data descriptors inherited from threading._Verbose:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        FileOutput = True
Title = 'GCode File'
Wildcard = 'GCode files (*.gcode)|*.gcode|'