skeinforge_tools.craft_plugins.drill ($Date: 2008/21/04 $) | index /home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/craft_plugins/drill.py |
Drill is a script to drill down small holes.
Operation
Settings
Drilling Margin
Drilling Margin on Top
Drilling Margin on Bottom
Examples
Operation
The default 'Activate Drill' checkbox is on. When it is on, the functions described below will work, when it is off, the functions will not be called.
Settings
Drilling Margin
The drill script will move the tool from the top of the hole plus the 'Drilling Margin on Top', to the bottom of the hole minus the 'Drilling Margin on Bottom'.
Drilling Margin on Top
Default is three millimeters.
Drilling Margin on Bottom
Default is one millimeter.
Examples
The following examples drill the file Screw Holder Bottom.stl. The examples are run in a terminal in the folder which contains Screw Holder Bottom.stl and drill.py.
> python drill.py
This brings up the drill dialog.
> python drill.py Screw Holder Bottom.stl
The drill tool is parsing the file:
Screw Holder Bottom.stl
..
The drill tool has created the file:
.. Screw Holder Bottom_drill.gcode
> python
Python 2.5.1 (r251:54863, Sep 22 2007, 01:43:31)
[GCC 4.2.1 (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import drill
>>> drill.main()
This brings up the drill dialog.
>>> drill.writeOutput( 'Screw Holder Bottom.stl' )
The drill tool is parsing the file:
Screw Holder Bottom.stl
..
The drill tool has created the file:
.. Screw Holder Bottom_drill.gcode
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) |