~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to share/extensions/gcodetools_prepare_path_for_plasma.inx

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
3
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
 
4
    <name>Prepare path for plasma</name>
 
5
    <id>ru.cnc-club.filter.gcodetools_plasma-prepare-path_no_options_no_preferences</id>
 
6
        <dependency type="executable" location="extensions">gcodetools.py</dependency>
 
7
        <dependency type="executable" location="extensions">inkex.py</dependency>
 
8
        <param name='active-tab' type="notebook">
 
9
 
 
10
        <page name='plasma-prepare-path' _gui-text='Prepare path for plasma or laser cuters'>   
 
11
                <param name='in-out-path' type="boolean" _gui-text="Create in-out paths" >True</param>
 
12
                <param name='in-out-path-len' type="float" precision="5" min="0" max="1000000" _gui-text='In-out path length:'>10</param>
 
13
                <param name='in-out-path-point-max-dist' type="float" precision="5" min="0" max="1000000" _gui-text='In-out path max distance to reference point:'>10</param>
 
14
                <param name="in-out-path-type"  _gui-text="In-out path type:" type="optiongroup" appearance="minimal">
 
15
                        <_option value="Round">Round</_option>
 
16
                        <_option value="Perpendicular">Perpendicular</_option>
 
17
                        <_option value="Tangent">Tangent</_option>
 
18
                </param>
 
19
                <param name='in-out-path-radius' type="float" precision="5" min="0" max="1000000" _gui-text='In-out path radius for round path:'>10</param>
 
20
                <param name='in-out-path-replace-original-path' type="boolean" _gui-text="Replace original path" >False</param>
 
21
                <param name='in-out-path-do-not-add-reference-point' type="boolean" _gui-text="Do not add in-out reference points" >False</param>
 
22
 
 
23
                <_param name="help" type="description">-------------------------------------------------</_param>
 
24
                <param name='plasma-prepare-corners' type="boolean" _gui-text="Prepare corners" >True</param>
 
25
                <param name='plasma-prepare-corners-distance' type="float" precision="5" min="0" max="1000000" _gui-text='Stepout distance for corners:'>10</param>
 
26
                <param name='plasma-prepare-corners-tolerance' type="float" precision="5" min="0" max="180" _gui-text='Maximum angle for corner (0-180 deg):'>140</param>
 
27
                
 
28
 
 
29
 
 
30
        </page>
 
31
 
 
32
                <page name='help' _gui-text='Help'>
 
33
                        <_param name="fullhelp" type="description">
 
34
Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. 
 
35
This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed.
 
36
 
 
37
Tutorials, manuals and support can be found at
 
38
English support forum:
 
39
        http://www.cnc-club.ru/gcodetools
 
40
        
 
41
and Russian support forum:
 
42
        http://www.cnc-club.ru/gcodetoolsru
 
43
 
 
44
Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas, Chris Lusby Taylor.
 
45
 
 
46
Gcodetools ver. 1.7
 
47
</_param>       
 
48
 
 
49
                </page>
 
50
 
 
51
        </param>        
 
52
    <effect>
 
53
                <effects-menu>
 
54
                        <submenu _name="Gcodetools"/>
 
55
                </effects-menu>
 
56
                <object-type>path</object-type>
 
57
    </effect>
 
58
    <script>
 
59
        <command reldir="extensions" interpreter="python">gcodetools.py</command>
 
60
    </script>
 
61
</inkscape-extension>