Search found 5 matches
- Mon Dec 03, 2018 9:26 am
- Forum: Help with using Inkscape
- Topic: Get coordinates of *selected nodes*
- Replies: 3
- Views: 1714
Re: Get coordinates of *selected nodes*
That (https://launchpadlibrarian.net/23536784 ... l_nodes.py) indeed works, thank you!
- Mon Dec 03, 2018 1:35 am
- Forum: Help with using Inkscape
- Topic: Get coordinates of *selected nodes*
- Replies: 3
- Views: 1714
Get coordinates of *selected nodes*
Hello, I have a path, which has a number of nodes. I select some of the nodes with node-selection tool. I would like to be able (programmatically) get the coordinates of the selected nodes. I saw the path itself is encoded something like: <path id="path870" d="m 702.41652,705.5811 v 0...
- Sun Dec 02, 2018 12:02 am
- Forum: General Discussions
- Topic: Examples for Inkscape command line usage wanted
- Replies: 24
- Views: 14200
Re: Examples for Inkscape command line usage wanted
I have an extension for adding kerf to the cutting of the images. It calls this from commandline (after changing the line's width from python): inkscape --select=pathX --verb=StrokeToPath --verb=SelectionUnion --verb=SelectionBreakApart --verb=SelectionUnion current_file.svg --verb=FileSave --verb=F...
- Tue Nov 27, 2018 3:03 am
- Forum: Inkscape Ideas
- Topic: Combining operations into extension (aka macros)
- Replies: 4
- Views: 3978
Re: Combining operations into extension (aka macros)
Thank you for your answers. I think I didn't express myself clearly enough. What I'd like to be able to do is: a. open inkscape in the GUI version b. select some objects c. perform a sequence of operations on them (e.g. change the color to red, change the width of the line to 0.5mm, Union) b2. selec...
- Mon Nov 26, 2018 5:23 am
- Forum: Inkscape Ideas
- Topic: Combining operations into extension (aka macros)
- Replies: 4
- Views: 3978
Combining operations into extension (aka macros)
I was looking to implement an extension for adding a kerf for laser cutting. To do that, I needed to perform a couple of existing operations (StrokeToPath, Union, BreakApart, Union) into a single extension. I was looking how to do this using current extensions / operations, but didn't find anything....