summaryrefslogtreecommitdiffstats
path: root/share/extensions/path_number_nodes.inx
blob: 574fd17914019a576e8d675580678294cf979ecb (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <name>Number Nodes</name>
    <id>org.inkscape.filter.number_nodes</id>
    <param name="tab" type="notebook">
        <page name="Options" gui-text="Options">
            <param name="fontsize" type="string" gui-text="Font size:"
            gui-description="Size of the node number labels (20px, 12pt...)">20px</param>
            <param name="dotsize" type="string" gui-text="Dot size:"
            gui-description="Diameter of the dots placed at path nodes (10px, 2mm...)">10px</param>
            <param name="start" type="int" min="0" max="1000" gui-text="Starting dot number:"
            gui-description="First number in the sequence, assigned to the first node of the path.">1</param>
            <param name="step" type="int" min="0" max="1000" gui-text="Step:"
            gui-description="Numbering increment between two nodes">1</param>
        </page>
        <page name="Help" gui-text="Help">
            <label xml:space="preserve">This extension replaces the paths in the selection with numbered dots in place of their nodes.</label>
        </page>
    </param>        

    <effect>
        <object-type>path</object-type>
                <effects-menu>
                    <submenu name="Visualize Path"/>
                </effects-menu>
    </effect>
    <script>
        <command location="inx" interpreter="python">path_number_nodes.py</command>
    </script>
</inkscape-extension>