1<?xml version="1.0" encoding="UTF-8"?>
2<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3    <name>Number Nodes</name>
4    <id>org.inkscape.filter.number_nodes</id>
5    <param name="tab" type="notebook">
6        <page name="Options" gui-text="Options">
7            <param name="fontsize" type="string" gui-text="Font size:">20px</param>
8            <param name="dotsize" type="string" gui-text="Dot size:">10px</param>
9            <param name="start" type="int" min="0" max="1000" gui-text="Starting dot number:">1</param>
10            <param name="step" type="int" min="0" max="1000" gui-text="Step:">1</param>
11        </page>
12        <page name="Help" gui-text="Help">
13            <label xml:space="preserve">This extension replaces the selection's nodes with numbered dots according to the following options:
14    * Font size: size of the node number labels (20px, 12pt...).
15    * Dot size: diameter of the dots placed at path nodes (10px, 2mm...).
16    * Starting dot number: first number in the sequence, assigned to the first node of the path.
17    * Step: numbering step between two nodes.</label>
18        </page>
19    </param>
20
21    <effect>
22        <object-type>path</object-type>
23                <effects-menu>
24                    <submenu name="Visualize Path"/>
25                </effects-menu>
26    </effect>
27    <script>
28        <command location="inx" interpreter="python">path_number_nodes.py</command>
29    </script>
30</inkscape-extension>
31