Yet Another Interpolator
This will let you make very simple animation in Inkscape. Usually this means just paths and filled paths (no gradient, masking, etc yet).
This was mainly made for my own use which would explain some of the clunkiness.
Here are two usage examples
All links
- https://code.launchpad.net/~yai-alpha/inkscape/yai-alpha
- https://github.com/yaii/pyink-lite
- https://github.com/yaii/ipyconsole
- https://github.com/yaii/yai/blob/alpha/README.md
Getting started
Running
Since it is experimental, it has to be built first. It isn't just some file that can be downloaded and run (yet).
I will edit this part and add links here if people build binaries for particular systems and host them. If there is enough requests, I could also try to make builds (mostly only Linux though).
Building
All the dependencies for compiling (regular) Inkscape are needed plus
- Python 2.x (including header files) Versions 2.5 to 2.7 work, I haven't tried others.
- PyGTK (pretty huge, may eventually not be needed)
- Cython (to build and may not be needed even for that if a pre-compiled .cpp file is distributed) Version at least 0.17 I think but I've been using 0.22 lately
Get the branch here
Code: Select all
bzr branch lp:~yai-alpha/inkscape/yai-alpha
Then either follow the instruction for compiling Inkscape with an extra autogen at the start
Code: Select all
./autogen.sh # Needed because the included files are no good.
mkdir build
cd build
../configure --with-python
make
or use cmake.
Code: Select all
mkdir build-cmake
cd build-cmake
cmake ../inkscape -DWITH_PYTHON=y
make
Then drop these files somewhere pyink-lite
Read the usage example from the pyink-lite github page.
When the (modified) Inkscape starts, in preferences change paths to use absolute and repeated coordinates!
Not all functions are exposed as UI or menu items (in fact, there are no new menu items)! See "Missing user interface" below.
What this actually is
Some Inkscape Python binding (in Cython), a GTK IPython console and a sample UI for making animation.
The Python bindings can be thought of as a more permissive extensions system (Inkscape already allows Python extensions of some sort). Then the animation interface is an example of Python binding extension.
Here's some credits and some more technical rambling. Note this github version is a bit dated (it was based on the stable version of Inkscape 0.91 and doesn't work with cmake).
Missing user interface
There are buttons missing so its not possible to just open it up click around and see immediate effects. But they can be added, even on the fly as Inkscape still runs (hopefully this can be done faster later on). This is done using either the python (the long empty text box above the slider) or ipython console (the large box at the top with "In [1]:"). Some user interface is nonetheless still missing.
Example for adding a button to select all things filled red.
Code: Select all
def select_red(button):
wrap.xml.selector.clear()
for node in wrap.xml.nodes.values():
if node.get("style.fill") == "#ff0000":
wrap.xml.selector.add(node)
wrap.addbutton("Select Red", select_red)
Why is this?
In other programs, you usually have to "learn to use" the program before starting. Figure out all the menus and buttons it has. And that's all fine if you plan on using the same program for a long time (but then the UI changes when version changes...). But sometimes you already know what you want to do and what the program should do.
Here (ideally) you would instead read what the program is capable of and then make up the interface as you go. The intention is to instead (eventually) make it so that an interface can be created quickly so you can make the interface you want for how you want to use the program.
Taken further, you could even make one interface per file or project (or just slight modification of an existing interface). There's even a Reload code button (which uses xreload.py which is known not to work 100% of the time but when it does work it saves a lot of time and in the worst case you can just restart Inkscape).
It will of course be possible to always stick to the same interface and forget all this.
Known issues
Crashing on some undo
Because the UI and drawing are both on the canvas in the same file, undoing something that changed the UI (above the document area) will usually result in a crash.
Questions and answers
Q: How do I export my animation to a video, .gif or other?
A: There used to be an export option (which just called the command line version of Inkscape many times) but I ended up regularly using a desktop recorder so right now this is the suggested way to go.
Q: How does this relate to SMIL and other animation standards?
A: It ignores them but the description is hopefully simple enough that it is (will be) easy to export to other formats.
Stuff I could do
Depending on demand.
- Answer questions on how to do this. There is probably a lot I've missed here.
- Write more, especially on not well exposed features.
- Clean up the frame table sample UI and make it available.
- Put an actual license on the extension. It will be open source, just have to pick one.
- Show more samples.
- Finish this list.
How to help move this forward
Not entirely what's more important (well, I know the answer for my own use but not others).
- Write tutorials, fill in documentation.
- Design some good default user interface.
- Figure out how to use Inkscape's selection (and maybe other tools) as user interface elements, in a way that makes sense and doesn't crash things.
- Read the code and try to organize and simplify it.
- Wrap more of the C++ code to make it available to Python.
Conclusion
So in conclusion, batman. http://gfycat.com/EverlastingFearlessCony (Paths stolen from here.)