55 lines
3.5 KiB
Plaintext
55 lines
3.5 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||
|
<name>Modify Path Start Node</name>
|
||
|
<id>fablabchemnitz.de.modify_path_start</id>
|
||
|
<param name="tab" type="notebook">
|
||
|
<page name="tab_settings" gui-text="Modify Path Start Node">
|
||
|
<param name="closed_only" type="bool" gui-text="Handle closed paths only" gui-description="If disabled we also apply on open (sub)paths. Warning: This REMOVES segments!">true</param>
|
||
|
<param name="movenode" type="int" min="-99999" max="99999" gui-text="Move starting node n nodes further">0</param>
|
||
|
<param name="visualize_result" type="bool" gui-text="Visualize first two nodes" gui-description="If enabled first two nodes get a number and a dot">false</param>
|
||
|
<param name="fontsize" type="string" gui-text="Font size:">10px</param>
|
||
|
<param name="dotsize" type="string" gui-text="Dot size:">10px</param>
|
||
|
<param name="debug" type="bool" gui-text="Debug Output">false</param>
|
||
|
<label appearance="header">Notes</label>
|
||
|
<label>Use "Path > Reverse" to change path direction</label>
|
||
|
<label>Use extension "Chain Paths" to make closed paths out of segments.</label>
|
||
|
</page>
|
||
|
<page name="tab_about" gui-text="About">
|
||
|
<label appearance="header">Modify Path Start Node</label>
|
||
|
<label>Extension to change starting node of a path and visualize it by dots and numbers</label>
|
||
|
<label>2021 / written by Mario Voigt (Stadtfabrikanten e.V. / FabLab Chemnitz)</label>
|
||
|
<spacer/>
|
||
|
<label appearance="header">Online Documentation</label>
|
||
|
<label appearance="url">https://y.stadtfabrikanten.org/modifypathstartnode</label>
|
||
|
<spacer/>
|
||
|
<label appearance="header">Contributing</label>
|
||
|
<label appearance="url">https://gitea.fablabchemnitz.de/MarioVoigt/mightyscape-1.X</label>
|
||
|
<label appearance="url">mailto:mario.voigt@stadtfabrikanten.org</label>
|
||
|
<spacer/>
|
||
|
<label appearance="header">MightyScape Extension Collection</label>
|
||
|
<label>This piece of software is part of the MightyScape for Inkscape Extension Collection and is licensed under GNU GPL v3</label>
|
||
|
<label appearance="url">https://y.stadtfabrikanten.org/mightyscape-overview</label>
|
||
|
</page>
|
||
|
<page name="tab_donate" gui-text="Donate">
|
||
|
<label appearance="header">Coffee + Pizza</label>
|
||
|
<label>We are the Stadtfabrikanten, running the FabLab Chemnitz since 2016. A FabLab is an open workshop that gives people access to machines and digital tools like 3D printers, laser cutters and CNC milling machines.</label>
|
||
|
<spacer/>
|
||
|
<label>You like our work and want to support us? You can donate to our non-profit organization by different ways:</label>
|
||
|
<label appearance="url">https://y.stadtfabrikanten.org/donate</label>
|
||
|
<spacer/>
|
||
|
<label>Thanks for using our extension and helping us!</label>
|
||
|
<image>../000_about_fablabchemnitz.svg</image>
|
||
|
</page>
|
||
|
</param>
|
||
|
<effect>
|
||
|
<object-type>path</object-type>
|
||
|
<effects-menu>
|
||
|
<submenu name="FabLab Chemnitz">
|
||
|
<submenu name="Modify existing Path(s)"/>
|
||
|
</submenu>
|
||
|
</effects-menu>
|
||
|
</effect>
|
||
|
<script>
|
||
|
<command location="inx" interpreter="python">modify_path_start.py</command>
|
||
|
</script>
|
||
|
</inkscape-extension>
|