Difference between revisions of "LivePathEffects Discussion"
Jump to navigation
Jump to search
Johanengelen (talk | contribs) |
Johanengelen (talk | contribs) |
||
Line 26: | Line 26: | ||
<inkscape:path-effect | <inkscape:path-effect | ||
effect="..." (string with the name of the applied effect) | effect="..." (string with the name of the applied effect) | ||
<inkscape:path-effect- | <inkscape:path-effect-param | ||
nr="1" | |||
<path | <path | ||
d = "..." (the original path that now has an applied effect) | d = "..." (the original path that now has an applied effect) | ||
/> | /> | ||
/> | /> | ||
<inkscape:path-effect- | <inkscape:path-effect-param | ||
name="param1" | |||
<path | |||
d = "..." (the output of the effect below!) | |||
<inkscape:path-effect | |||
effect="..." (string with the name of the applied effect) | |||
<inkscape:path-effect-param | |||
nr="1" | |||
d=".." | |||
/> | |||
/> | |||
/> | |||
/> | |||
/> | /> | ||
/> | /> | ||
</pre> | </pre> |
Revision as of 20:39, 15 April 2007
Discussion page for Johan's Live Path Effects project for GSoC2007.
What is a Live Path Effect?
- Spiral/star tool?
- Skeletal strokes
What's it look like in SVG?
Simple idea
<path original-d = "..." (the original path that now has an applied effect) d="..." (the output of the live-effect) inkscape:path-effect="..." (string with the name of the applied effect) inkscape:path-effect-param1= ... (can be anything) inkscape:path-effect-param2 , etc />
Nested idea
work in progress...
<path d="..." (the output of the live-effect) <inkscape:path-effect effect="..." (string with the name of the applied effect) <inkscape:path-effect-param nr="1" <path d = "..." (the original path that now has an applied effect) /> /> <inkscape:path-effect-param name="param1" <path d = "..." (the output of the effect below!) <inkscape:path-effect effect="..." (string with the name of the applied effect) <inkscape:path-effect-param nr="1" d=".." /> /> /> /> /> />