Ben Williams
Ben Williams
First, thank you for providing the model! I've gotten some really cool results from it. I did notice you mentioned something about working on a new version on the model...
Thanks for the consideration! I might be able to write a program that will go through the paths and create and group duplicates, and either way, it's not _horribly_ tedious...
I did it: [https://github.com/Rybec/SVG-Path-Multiplier](https://github.com/Rybec/SVG-Path-Multiplier) It's not very well tested. I'll do that some next week and update the documentation. The SVG file ends up looking about the same (some different...
Ok, you _can_ add metadata in Inkscape, but it's limited to a handful of specific fields. Files > Document Properties has a Metadata tab. The "Description" field could have text...
In the comment _right_ before yours, I described how to add metadata without directly editing the SVG. No offense intended, but please don't comment if you haven't read the previous...
No worries then! I'm in the process of learning Japanese, and I understand how communicating in a second language can be! And yeah, software incompatibility is basically just how things...
Ok, so let me make sure I understand what you are trying to do, so I answer the right question: I _sounds_ like you want test() to run in a...
Ok, so the other thing you could be trying to do: Perhaps my original guess was wrong, and you want the yield in test() to delay _the whole_ task it...
Ok, I think I understand a bit better. You can take advantage of the StopIteration exception to achieve what you want here: Let's assume test() _can have_ multiple yields within...
On a side note: If I was using the for loop option, I would put a comment in my code explaining that it is just running a function to completion,...