-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlaserengraver_laser.inx
42 lines (34 loc) · 1.73 KB
/
laserengraver_laser.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
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Laser</_name>
<id>ru.cnc-club.filter.gcodetools_laser</id>
<dependency type="executable" location="extensions">laserengraver.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name='active-tab' type="notebook">
<page name='Laser' _gui-text='Laser'>
<param name="engraving-laser-speed" type="int" min="0" max="1000" _gui-text="Laser engraving speed:">30</param>
<param name="filename" type="string" _gui-text="File:">output.nc</param>
<param name="add-numeric-suffix-to-filename" type="boolean" _gui-text="Add numeric suffix to filename">true</param>
</page>
<page name='preferences' _gui-text='Preferences'>
<param name="directory" type="string" _gui-text="Directory:">c:\output\</param>
<param name="unit" type="enum" _gui-text="Units (mm or in):">
<item value="G21 (All units in mm)">mm</item>
<item value="G20 (All units in inches)">in</item>
</param>
<param name="suppress-all-messages" type="boolean" _gui-text="Suppress all messages">true</param>
<param name="engraving-draw-calculation-paths" type="boolean" _gui-text="Draw additional graphics to debug engraving path">false</param>
<param name="create-log" type="boolean" _gui-text="Generate log file">false</param>
<param name="log-filename" type="string" _gui-text="Full path to log file:"></param>
</page>
</param>
<effect>
<effects-menu>
<submenu _name="Laserengraver"/>
</effects-menu>
<object-type>path</object-type>
</effect>
<script>
<command reldir="extensions" interpreter="python">laserengraver.py</command>
</script>
</inkscape-extension>