-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEleksmaker.inx
43 lines (34 loc) · 2.13 KB
/
Eleksmaker.inx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Gcode Output</_name>
<id>Eleksmaker</id>
<dependency type="executable" location="extensions">Eleksmaker.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="laser-command" type="string" _gui-text="Laser On/Pen Down:">M03 G1Z0</param>
<param name="laser-off-command" type="string" _gui-text="Laser Off/Pen Up:">M05</param>
<param name="posx" type="int" min="0" max="10000" _gui-text="Start Position X:">0</param>
<param name="posy" type="int" min="0" max="10000" _gui-text="Start Position Y:">0</param>
<param name="iscenter" type="boolean" _gui-text="Start Position Move To Center">false</param>
<param name="travel-speed" type="int" min="0" max="10000" _gui-text="Jogging Speed (mm/min or in/min):">4500</param>
<param name="laser-speed" type="int" min="0" max="4000" _gui-text="Engraving / Cutting Speed (mm/min or in/min):">800</param>
<param name="laser-power" type="int" min="0" max="1000" _gui-text="Laser Power / Pen Distance S# (0-1000):">1000</param>
<param name="power-delay" type="float" min="0" max="1000" _gui-text="Delay After Laser-On (s):">0.2</param>
<param name="passes" type="int" min="1" max="100" _gui-text="Number of Passes (1-100):">1</param>
<param name="pass-depth" type="float" min="0" max="5" _gui-text="Pass Z-change (0-5) (mm or in):">0</param>
<param name="directory" type="string" _gui-text="Save Path:">D:\output</param>
<param name="filename" type="string" _gui-text="File Name:">output.nc</param>
<param name="add-numeric-suffix-to-filename" type="boolean" _gui-text="Add Num To File Name">false</param>
<param name="unit" type="enum" _gui-text="Unit (mm or in):">
<item value="G21 (All units in mm)">mm</item>
<item value="G20 (All units in inches)">in</item>
</param>
<effect>
<effects-menu>
<submenu _name="EleksMaker Tool"/>
</effects-menu>
<object-type>path</object-type>
</effect>
<script>
<command reldir="extensions" interpreter="python">Eleksmaker.py</command>
</script>
</inkscape-extension>