forked from JarrettR/QuickJoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickjoint.inx
42 lines (40 loc) · 1.99 KB
/
quickjoint.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>QuickJoint</_name>
<id>org.inkscape.filter.quickjoint</id>
<dependency type="executable" location="extensions">quickjoint.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="qjuse" type="description" xml:space="preserve">Adding box joint tabs or slots to selected object!
</param>
<param name="qjver" type="description" xml:space="preserve">Version 0.3
</param>
<param name="activetab" type="notebook">
<page name="tabpage" _gui-text="Tabs">
<param name="side" type="int" min="0" max="512" _gui-text="Side:">0</param>
<param name="numtabs" type="int" min="1" max="512" _gui-text="Number of tabs:">1</param>
</page>
<page name="slotpage" _gui-text="Slots">
<param name="numslots" type="int" min="1" max="512" _gui-text="Number of slots:">1</param>
</page>
</param>
<param name="thickness" type="float" min="0.0" max="1000.0" precision="3" _gui-text="Material thickness:">3.0</param>
<param name="kerf" type="float" min="0.0" max="1000.0" precision="5" _gui-text="Laser kerf:">0.14</param>
<param name="units" type="enum" _gui-text="Units:">
<item value="mm">mm</item>
<item value="px">px</item>
<item value="pt">pt</item>
<item value="in">in</item>
<item value="cm">cm</item>
</param>
<param name="edgefeatures" type="boolean" _gui-text="Features on edges">False</param>
<param name="flipside" type="boolean" _gui-text="Flip side">False</param>
<effect needs-live-preview="true">
<object-type>path</object-type>
<effects-menu>
<submenu _name="Modify Path"/>
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">quickjoint.py</command>
</script>
</inkscape-extension>