<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Justin.Wikinator</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Justin.Wikinator"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Justin.Wikinator"/>
	<updated>2026-05-21T16:09:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=12446</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=12446"/>
		<updated>2007-01-11T15:21:49Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''* Although this proposal has not been accepted amongst the Summer of Code applicants, my efforts in home-brew graphics scripting continue, and may one day see the light of day *''&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon).  Keep in mind that this gallery is only the tip of the iceberg when it comes to the functionality of the libraries.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
==Timeline==&lt;br /&gt;
&lt;br /&gt;
This timeline has been written with a estimation-time-doubling heuristic in mind: &lt;br /&gt;
* 2 weeks - make all design decisions, working with mentor to prevent overlap and ensure proper integration.  Questions to answer:&lt;br /&gt;
** What is the full list of features to be implemented over the summer ?  What is the priority of each feature ?&lt;br /&gt;
** How will Python access a DOM ?  Should the DOM be abstracted into a Document object that is passed/instantiated in each effect ?&lt;br /&gt;
** Will the project incorporate live scripting from a command line ?  If so, how can the archetecture be designed to meet those needs ?   &lt;br /&gt;
** Should external geometry functions be used, or should all geometric operations be natively implemented?&lt;br /&gt;
** Should the .inx specification remain the same ?&lt;br /&gt;
** How will changes to the API affect existing effects ?&lt;br /&gt;
* 2 weeks - make existing code that will be encorporated into the API more robust by using PyUnit test cases for QA and improve documentation, possibly using Doxygen for documentation generation&lt;br /&gt;
* 2 weeks - integrate existing libraries into the Inkscape API&lt;br /&gt;
* 4 weeks - develop effects using the API&lt;br /&gt;
* 2 weeks - play with the API !  Write example scripts to generate art to be posted to various web sites (i.e. openclipart.org, deviantart), w/ advertisements for the new Inkscape features attached to them.&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6517</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6517"/>
		<updated>2006-05-24T23:50:46Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon).  Keep in mind that this gallery is only the tip of the iceberg when it comes to the functionality of the libraries.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
==Timeline==&lt;br /&gt;
&lt;br /&gt;
This timeline has been written with a estimation-time-doubling heuristic in mind: &lt;br /&gt;
* 2 weeks - make all design decisions, working with mentor to prevent overlap and ensure proper integration.  Questions to answer:&lt;br /&gt;
** What is the full list of features to be implemented over the summer ?  What is the priority of each feature ?&lt;br /&gt;
** How will Python access a DOM ?  Should the DOM be abstracted into a Document object that is passed/instantiated in each effect ?&lt;br /&gt;
** Will the project incorporate live scripting from a command line ?  If so, how can the archetecture be designed to meet those needs ?   &lt;br /&gt;
** Should external geometry functions be used, or should all geometric operations be natively implemented?&lt;br /&gt;
** Should the .inx specification remain the same ?&lt;br /&gt;
** How will changes to the API affect existing effects ?&lt;br /&gt;
* 2 weeks - make existing code that will be encorporated into the API more robust by using PyUnit test cases for QA and improve documentation, possibly using Doxygen for documentation generation&lt;br /&gt;
* 2 weeks - integrate existing libraries into the Inkscape API&lt;br /&gt;
* 4 weeks - develop effects using the API&lt;br /&gt;
* 2 weeks - play with the API !  Write example scripts to generate art to be posted to various web sites (i.e. openclipart.org, deviantart), w/ advertisements for the new Inkscape features attached to them.&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6515</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6515"/>
		<updated>2006-05-24T23:16:06Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* AutoShapes extensions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon).  Keep in mind that this gallery is only the tip of the iceberg when it comes to the functionality of the libraries.&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
==Timeline==&lt;br /&gt;
&lt;br /&gt;
This timeline has been written with a estimation-time-doubling heuristic in mind: &lt;br /&gt;
* 2 weeks - make all design decisions, working with mentor to prevent overlap and ensure proper integration.  Questions to answer:&lt;br /&gt;
** What is the full list of features to be implemented over the summer ?  What is the priority of each feature ?&lt;br /&gt;
** How will Python access a DOM ?  Should the DOM be abstracted into a Document object that is passed/instantiated in each effect ?&lt;br /&gt;
** Will the project incorporate live scripting from a command line ?  If so, how can the archetecture be designed to meet those needs ?   &lt;br /&gt;
** Should external geometry functions be used, or should all geometric operations be natively implemented?&lt;br /&gt;
** Should the .inx specification remain the same ?&lt;br /&gt;
** How will changes to the API affect existing effects ?&lt;br /&gt;
* 2 weeks - make existing code that will be encorporated into the API more robust by using PyUnit test cases for QA and improve documentation, possibly using Doxygen for documentation generation&lt;br /&gt;
* 2 weeks - integrate existing libraries into the Inkscape API&lt;br /&gt;
* 4 weeks - develop effects using the API&lt;br /&gt;
* 2 weeks - play with the API !  Write example scripts to generate art to be posted to various web sites (i.e. openclipart.org, deviantart), w/ advertisements for the new Inkscape features attached to them.&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6482</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6482"/>
		<updated>2006-05-20T15:35:52Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
==Timeline==&lt;br /&gt;
&lt;br /&gt;
This timeline has been written with a estimation-time-doubling heuristic in mind: &lt;br /&gt;
* 2 weeks - make all design decisions, working with mentor to prevent overlap and ensure proper integration.  Questions to answer:&lt;br /&gt;
** What is the full list of features to be implemented over the summer ?  What is the priority of each feature ?&lt;br /&gt;
** How will Python access a DOM ?  Should the DOM be abstracted into a Document object that is passed/instantiated in each effect ?&lt;br /&gt;
** Will the project incorporate live scripting from a command line ?  If so, how can the archetecture be designed to meet those needs ?   &lt;br /&gt;
** Should external geometry functions be used, or should all geometric operations be natively implemented?&lt;br /&gt;
** Should the .inx specification remain the same ?&lt;br /&gt;
** How will changes to the API affect existing effects ?&lt;br /&gt;
* 2 weeks - make existing code that will be encorporated into the API more robust by using PyUnit test cases for QA and improve documentation, possibly using Doxygen for documentation generation&lt;br /&gt;
* 2 weeks - integrate existing libraries into the Inkscape API&lt;br /&gt;
* 4 weeks - develop effects using the API&lt;br /&gt;
* 2 weeks - play with the API !  Write example scripts to generate art to be posted to various web sites (i.e. openclipart.org, deviantart), w/ advertisements for the new Inkscape features attached to them.&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6452</id>
		<title>Extension reference</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6452"/>
		<updated>2006-05-15T14:58:28Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''A page with info about the Effects and particularly some png's / screenshots.  To learn more about effects and how to write new ones, check out this page : [http://www.ekips.org/comp/inkscape/ Inkscape Effects]&lt;br /&gt;
''&lt;br /&gt;
&lt;br /&gt;
==Interpolate==&lt;br /&gt;
&lt;br /&gt;
This will transform one path to another path and optionally change the style too. It appears that you need to convert an object to a path first (Path &amp;gt; Object to path ; Shift-Ctrl-c). You can alter the number of steps used and choose one of two methods. &lt;br /&gt;
&lt;br /&gt;
upload:interpolate_blueSquare-redCircle.png&lt;br /&gt;
&lt;br /&gt;
==Kochify==&lt;br /&gt;
To use, select one path consisting of only line segments and apply the effect.  Kochify will replace the given path with a path that has a copy of the original path in between each two adjacent nodes in the original path.  If the original path input has bezier curves, the effect will effectively replace them with lines and then apply the effect.  For more information about Kochify from a developers perspective, look [http://www.ekips.org/comp/inkscape/koch.php here].  Requires: python.&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6451</id>
		<title>Extension reference</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6451"/>
		<updated>2006-05-15T14:54:06Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''A page with info about the Effects and particularly some png's / screenshots.  To learn more about effects and how to write new ones, check out this page : [http://www.ekips.org/comp/inkscape/ Inkscape Effects]&lt;br /&gt;
''&lt;br /&gt;
&lt;br /&gt;
==Interpolate==&lt;br /&gt;
&lt;br /&gt;
This will transform one path to another path and optionally change the style too. It appears that you need to convert an object to a path first (Path &amp;gt; Object to path ; Shift-Ctrl-c). You can alter the number of steps used and choose one of two methods. &lt;br /&gt;
&lt;br /&gt;
upload:interpolate_blueSquare-redCircle.png&lt;br /&gt;
&lt;br /&gt;
==Kochify==&lt;br /&gt;
To use, select one path consisting of only line segments and apply the effect.  Kochify will replace the given path with a path that has a copy of the original path in between each two adjacent nodes in the original path.  If the original path input has bezier curves, the effect will effectively replace them with lines and then apply the effect.  For more information about Kochify from a developers perspective, look [http://www.ekips.org/comp/inkscape/koch.php here].&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=JustinsEffectGoals&amp;diff=6410</id>
		<title>JustinsEffectGoals</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=JustinsEffectGoals&amp;diff=6410"/>
		<updated>2006-05-11T15:28:59Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the effects that I will to develop in Inkscape&lt;br /&gt;
&lt;br /&gt;
*Discrete Gradient Fill- given a selection of objects and two colors, the effect will fill each object in a graded fashion i.e. given 3 circles and red,white as colors, the first circle will be filled red, the second pink, and the third white&lt;br /&gt;
*Unit Subdivision generation (circular, triangular, cartesian, ruler ticks) - given a list of pairs that represent (division, width) it will create a grid with subdivisions of different widths (see [http://www.flickr.com/photos/wikinator/130981730/ a circular subdivision example])&lt;br /&gt;
*Metcalfle Wheel generator - see [http://www.flickr.com/photos/wikinator/144583174/ an example]&lt;br /&gt;
*Path command input - a gui for creating/appending paths, such that users could input path data based on geometric co-ordinates rather than mouse input&lt;br /&gt;
&lt;br /&gt;
GUI improvements for effects:&lt;br /&gt;
&lt;br /&gt;
*a screen-capture for co-ordinates (similar to the way spreadsheet program dialogues allow one to capture ranges by highlighting them on the spreadsheet)  &lt;br /&gt;
*color selector&lt;br /&gt;
*drop-down menu with predefined svg shapes in it&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=JustinsEffectGoals&amp;diff=6409</id>
		<title>JustinsEffectGoals</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=JustinsEffectGoals&amp;diff=6409"/>
		<updated>2006-05-11T15:28:27Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Justin's Effect Goals===&lt;br /&gt;
&lt;br /&gt;
These are the effects that I will to develop in Inkscape&lt;br /&gt;
&lt;br /&gt;
*Discrete Gradient Fill- given a selection of objects and two colors, the effect will fill each object in a graded fashion i.e. given 3 circles and red,white as colors, the first circle will be filled red, the second pink, and the third white&lt;br /&gt;
*Unit Subdivision generation (circular, triangular, cartesian, ruler ticks) - given a list of pairs that represent (division, width) it will create a grid with subdivisions of different widths (see [http://www.flickr.com/photos/wikinator/130981730/ a circular subdivision example])&lt;br /&gt;
*Metcalfle Wheel generator - see [http://www.flickr.com/photos/wikinator/144583174/ an example]&lt;br /&gt;
*Path command input - a gui for creating/appending paths, such that users could input path data based on geometric co-ordinates rather than mouse input&lt;br /&gt;
&lt;br /&gt;
GUI improvements for effects:&lt;br /&gt;
&lt;br /&gt;
*a screen-capture for co-ordinates (similar to the way spreadsheet program dialogues allow one to capture ranges by highlighting them on the spreadsheet)  &lt;br /&gt;
*color selector&lt;br /&gt;
*drop-down menu with predefined svg shapes in it&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6352</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6352"/>
		<updated>2006-05-05T14:48:56Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
==Timeline==&lt;br /&gt;
&lt;br /&gt;
This timeline has been written with a estimation-time-doubling heuristic in mind: &lt;br /&gt;
* 2 weeks - make all design decisions, working with mentor to prevent overlap and ensure proper integration.  Questions to answer:&lt;br /&gt;
** What is the full list of features to be implemented over the summer ?  What is the priority of each feature ?&lt;br /&gt;
** How will Python access a DOM ?&lt;br /&gt;
** Will the project incorporate live scripting from a command line ?  If so, how can the archetecture be designed to meet those needs ?   &lt;br /&gt;
** Should external geometry functions be used, or should all geometric operations be natively implemented?&lt;br /&gt;
** Should the .inx specification remain the same ?&lt;br /&gt;
** How will changes to the API affect existing effects ?&lt;br /&gt;
* 2 weeks - make existing code that will be encorporated into the API more robust by using PyUnit test cases for QA and improve documentation, possibly using Doxygen for documentation generation&lt;br /&gt;
* 2 weeks - integrate existing libraries into the Inkscape API&lt;br /&gt;
* 4 weeks - develop effects using the API&lt;br /&gt;
* 2 weeks - play with the API !  Write example scripts to generate art to be posted to various web sites (i.e. openclipart.org, deviantart), w/ advertisements for the new Inkscape features attached to them.&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=UbuntuInstall043&amp;diff=6350</id>
		<title>UbuntuInstall043</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=UbuntuInstall043&amp;diff=6350"/>
		<updated>2006-05-04T17:46:06Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install Inkscape 0.43 on Breezy Badger==&lt;br /&gt;
&lt;br /&gt;
''From the Ubuntu Forums thread [http://www.ubuntuforums.org/showthread.php?t=93233 here]:''&lt;br /&gt;
 &lt;br /&gt;
*Step 1: Open up synaptic or apt-get install:&lt;br /&gt;
**libglibmm-2.4-dev&lt;br /&gt;
**libgtkmm-2.4-dev&lt;br /&gt;
**libSigc++2.0-dev&lt;br /&gt;
*Step 2:&lt;br /&gt;
**Get and install the following packages from Debian testing:&lt;br /&gt;
***libgc1c2_6.5-1_i386.deb&lt;br /&gt;
***libgc-dev_6.5-1_i386.deb&lt;br /&gt;
***libgtkspell0_2.0.10-3_i386.deb&lt;br /&gt;
***libgtkspell-dev_2.0.10-3_i386.deb&lt;br /&gt;
***Download the Inkscape 0.43 source and compile and install it.&lt;br /&gt;
*Or Alternate Step 2:&lt;br /&gt;
**Download this package http://keithperkins.net/files/inkscape-.43+deps.tar.gz extract it, and dpkg -i all the files in the order above, and then do the same for the Inkscape_0.43-1_i386.deb (Yes I made one) Or you can, also download just the Inkscape .deb package http://keithperkins.net/files/inkscape_0.43_1.tar.gz&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=UbuntuInstall043&amp;diff=6349</id>
		<title>UbuntuInstall043</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=UbuntuInstall043&amp;diff=6349"/>
		<updated>2006-05-04T17:40:04Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How to install Inkscape 0.43 on Breezy Badger==&lt;br /&gt;
&lt;br /&gt;
''From the Ubuntu Forums thread [http://www.ubuntuforums.org/showthread.php?t=93233 here]:''&lt;br /&gt;
 &lt;br /&gt;
Step 1:&lt;br /&gt;
Open up synaptic or apt-get install:&lt;br /&gt;
libglibmm-2.4-dev&lt;br /&gt;
libgtkmm-2.4-dev&lt;br /&gt;
libSigc++2.0-dev&lt;br /&gt;
Step 2:&lt;br /&gt;
Get the following packages from Debian testing:&lt;br /&gt;
libgc1c2_6.5-1_i386.deb&lt;br /&gt;
libgc-dev_6.5-1_i386.deb&lt;br /&gt;
libgtkspell0_2.0.10-3_i386.deb&lt;br /&gt;
libgtkspell-dev_2.0.10-3_i386.deb&lt;br /&gt;
and install them.&lt;br /&gt;
Download the Inkscape 0.43 source and compile and install it.&lt;br /&gt;
Or Alternate Step 2:&lt;br /&gt;
Download this package http://keithperkins.net/files/inkscape-.43+deps.tar.gz&lt;br /&gt;
extract it, and dpkg -i all the files in the order above, and then do the same for the Inkscape_0.43-1_i386.deb&lt;br /&gt;
(Yes I made one)&lt;br /&gt;
Or you can, also download just the Inkscape .deb package http://keithperkins.net/files/inkscape_0.43_1.tar.gz&lt;br /&gt;
I posted this in the Customization Forum last night but it hasn't been moderated yet (or their not going to let it in--I've not word on it, and don't know how longit's supposed to take). I made a .deb for Inkscape .43 and tar/gzipped it up with the deps that aren't in Ubuntu repos, and uploaded to my site. Also just the .deb if anyone just wants that.&lt;br /&gt;
Works fine on my computer--YMMV.&lt;br /&gt;
If anyone of the backports people want to use it for the backports go ahead.&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6295</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6295"/>
		<updated>2006-04-29T21:47:48Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* AutoShapes extensions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation (only &amp;quot;proper&amp;quot; poygon stars) (see this page: http://mathworld.wolfram.com/StarPolygon.html on Stars Polygons) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6294</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6294"/>
		<updated>2006-04-29T21:44:56Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* AutoShapes extensions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).&lt;br /&gt;
   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6293</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6293"/>
		<updated>2006-04-29T21:43:59Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* AutoShapes extensions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape).  Unlike AutoShapes in most drawing programs, which can only be scaled, many parameters of these AutoShapes could be configured (like the Lindenmayer).  To implement some of these, I might need to improve how the GUI interfaces with the effects (i.e. to collect a list of numbers of varying size as in unit subdivision).   &lt;br /&gt;
Some examples &lt;br /&gt;
* circle unit subdivision algorithm (see an example here) *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6292</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6292"/>
		<updated>2006-04-29T20:26:50Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG. Nor was I impressed with the code on a website called &amp;quot;Programmer Art&amp;quot; (which has since gone defunct) or the very basic examples on ASPN.    &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I was particularly interested in creating mandala-like patterns with my code, so I needed an easy way to convert polar co-ordinates to cartesian ones.  I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6291</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6291"/>
		<updated>2006-04-29T20:20:46Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
For a year now, I have been writing python scripts to generate and manipulate SVG.  My motivations in doing so was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I wanted a simpler way of creating elements so that I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed in a &amp;quot;pythonic&amp;quot; way.   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsers like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6290</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6290"/>
		<updated>2006-04-29T20:11:30Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I'm a fourth year Computer Science student at Carleton University.  I've yet to have a paid job as a programmer, but I've done a bunch technology-related volunteering and a lot of self-education to suppliment my university education.  I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly and am familiar with all its features&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer, during which I do not have other labour commitments&lt;br /&gt;
* enjoy writing and will provide good documentation for both developers and end users&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
* there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
* despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
* improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
* python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
* improving python effects libraries would expand functionality of Inkscape without introducing any bugs to the core C++ code&lt;br /&gt;
* improving python effects may offer ideas/sketches to improve path data structures internally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any feedback on this proposal would be greatly appreciated &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin &lt;br /&gt;
touchmewithsynchronicpulses)aat(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6289</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6289"/>
		<updated>2006-04-29T18:00:00Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self and Proposal==&lt;br /&gt;
&lt;br /&gt;
I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons and Free Culture community (this year I started organizing  [http://carleton.freeculture.org Free Culture Carleton])&lt;br /&gt;
My proposal will be a significant improvement to Inkscape because:&lt;br /&gt;
* effects are a strong driving force between many different media applications (i.e. raster graphics, audio, video, 3D) and extend the capabilities of them greatly&lt;br /&gt;
** there are many unimplimented effects that could be easily developed, as there's a lot of publications about computer graphics geometry describing the theoretical process &lt;br /&gt;
** despite this, there has not been a strong community of development around effects in Inkscape&lt;br /&gt;
** improving the ease of development and documentation around effects will encourage developers to create new effects&lt;br /&gt;
** python is an extremely accessible language that proves itself ideal for effects scripting (i.e. Blender scripting)&lt;br /&gt;
** a better &lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because I intent to participate in the development of Inkscape one way or another, I would greatly appreciate your assistance with my proposal.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin Barca&lt;br /&gt;
touchmewithsynchronicpulses)(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonExtensionAPI&amp;diff=6288</id>
		<title>ImprovingPythonExtensionAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonExtensionAPI&amp;diff=6288"/>
		<updated>2006-04-29T17:37:43Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: ImprovingPythonExtensionAPI moved to ImprovingPythonEffectsAPI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect [[ImprovingPythonEffectsAPI]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6287</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6287"/>
		<updated>2006-04-29T17:37:42Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: ImprovingPythonExtensionAPI moved to ImprovingPythonEffectsAPI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self==&lt;br /&gt;
&lt;br /&gt;
I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons community (this year I started organizing a Free Culture Group at Carleton University)&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because I intent to participate in the development of Inkscape one way or another, I would greatly appreciate your assistance with my proposal.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin Barca&lt;br /&gt;
touchmewithsynchronicpulses)(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6286</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6286"/>
		<updated>2006-04-29T17:36:05Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
===Mathematical libraries for plotting points===&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB #*&lt;br /&gt;
&lt;br /&gt;
===Functions for manipulating paths===&lt;br /&gt;
* abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
* path distance calculation *#*&lt;br /&gt;
* convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
* each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
* return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
* create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
* develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
* functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
* functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
* obtain a point a certain distance along a path&lt;br /&gt;
* add texture to curves&lt;br /&gt;
** similar to Kochify but that only applies 1 copy in between nodes wheras this would apply a pattern many times along one line or bezier command&lt;br /&gt;
** an example application: given a leaf outline, give a jagged texture of it&lt;br /&gt;
&lt;br /&gt;
===AutoShapes extensions===&lt;br /&gt;
Each AutoShape would generate a different figures given particular parameters from a GUI (like the star tool, but not being objects in Inkscape)&lt;br /&gt;
* circle unit subdivision algorithm *#*&lt;br /&gt;
* Cartesian and Poler graph with unit subdivision&lt;br /&gt;
* Ruler dashes with unit subdivision&lt;br /&gt;
* &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
* hexagon grid  *#*&lt;br /&gt;
* flower-like radial shapes *#* done some, but there's many possibilities&lt;br /&gt;
* series of circles forming a Cartoid *#*&lt;br /&gt;
* generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but after much contemplation/experimentation I haven't  figured out how to get my  spiral curves smoother)&lt;br /&gt;
* zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account (silly to rasterize SVG, but I haven't found good SVG gallery service/software, hope openclipart.org get ccHost working soon)&lt;br /&gt;
&lt;br /&gt;
==Selling Self==&lt;br /&gt;
&lt;br /&gt;
I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons community (this year I started organizing a Free Culture Group at Carleton University)&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because I intent to participate in the development of Inkscape one way or another, I would greatly appreciate your assistance with my proposal.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin Barca&lt;br /&gt;
touchmewithsynchronicpulses)(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6222</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6222"/>
		<updated>2006-04-23T10:35:27Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Selling Self */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
** obtain a point a certain distance along a path&lt;br /&gt;
** complex path intersections&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
** hexagon grid  *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I realize that my proposal needs a sample API to really demonstrate my intentions, so I'll be working on assembling this in the lead-up to the application opening.&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account.&lt;br /&gt;
&lt;br /&gt;
==Selling Self==&lt;br /&gt;
&lt;br /&gt;
I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly&lt;br /&gt;
* have the (electronic) book [http://www.learnsvg.com/ Learn SVG] as a reference&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work&lt;br /&gt;
* am aligned with the values of the Free Software movement and its offshoots like Creative Commons community (this year I started organizing a Free Culture Group at Carleton University)&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because I intent to participate in the development of Inkscape one way or another, I would greatly appreciate your assistance with my proposal.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin Barca&lt;br /&gt;
touchmewithsynchronicpulses)(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6221</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6221"/>
		<updated>2006-04-23T10:26:23Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor/method in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
** obtain a point a certain distance along a path&lt;br /&gt;
** complex path intersections&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
** hexagon grid  *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I realize that my proposal needs a sample API to really demonstrate my intentions, so I'll be working on assembling this in the lead-up to the application opening.&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account.&lt;br /&gt;
&lt;br /&gt;
==Selling Self==&lt;br /&gt;
&lt;br /&gt;
I believe I'm an excellent candidate for this position because I: &lt;br /&gt;
* use Inkscape regularly&lt;br /&gt;
* advocate for Free Software (this year I started organizing a Free Culture Group at Carleton University)&lt;br /&gt;
* have a bunch of code already written which could be applied to the project&lt;br /&gt;
* will pour a lot of my energies into this project during the summer&lt;br /&gt;
* will continue to improve Inkscape beyond the term of my work &lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because I intent to participate in the development of Inkscape one way or another, I would greatly appreciate your assistance with my proposal.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Justin Barca&lt;br /&gt;
touchmewithsynchronicpulses)(gmail.com&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6197</id>
		<title>Extension reference</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Extension_reference&amp;diff=6197"/>
		<updated>2006-04-19T17:41:51Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A page with info about the Effects and particularly some png's / screenshots.&lt;br /&gt;
&lt;br /&gt;
To learn more about effects and how to write new ones, check out this page : [http://www.ekips.org/comp/inkscape/ Inkscape Effects]&lt;br /&gt;
&lt;br /&gt;
Interpolate&lt;br /&gt;
&lt;br /&gt;
This will transform one path to another path and optionally change the style too. It appears that you need to convert an object to a path first (Path &amp;gt; Object to path ; Shift-Ctrl-c). You can alter the number of steps used and choose one of two methods. &lt;br /&gt;
&lt;br /&gt;
upload:interpolate_blueSquare-redCircle.png&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6196</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6196"/>
		<updated>2006-04-19T17:28:20Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  During this time I chose to apply for one of Inkscape's suggested projects becasue I figured I would be more likely to get the position this way, but I put little effort into my proposal, doing little more than cutting and pasting the suggestion into my application.  I have decided this year that instead of choosing one of the projects that Inkscape suggests, I will create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts &amp;quot;PySVaG&amp;quot; because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.   When I searched over the internet for code that could do this, I didn't find what I needed.  Math plotting libraries like GNUplot were not what I was looking for. I learned about ActionScript for Flash, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way of creating elements so I didn't have to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements (allowing for default values of attributes, style libraries, etc.), using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out overlaped the work done in the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a simple 2D geometry library in python but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. &lt;br /&gt;
 &lt;br /&gt;
Over the last year my imagination has discovered a richness of geometric/design problems to solve.   In my proposal, I have listed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the Python plugin API&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
** obtain a point a certain distance along a path&lt;br /&gt;
** complex path intersections&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** &amp;quot;star polygon&amp;quot; creation along with creation of a dictionary of all &amp;quot;proper&amp;quot; poygon stars (see this page on [ http://mathworld.wolfram.com/StarPolygon.html Stars Polygons ] ) *#*&lt;br /&gt;
** hexagon grid  *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account.&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inkscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6195</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6195"/>
		<updated>2006-04-19T16:48:37Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/  SVG IMAGENERATION] on my new Flickr account.&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6194</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6194"/>
		<updated>2006-04-19T16:47:19Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/ | SVG IMAGENERATION] on my new Flickr account.&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6193</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6193"/>
		<updated>2006-04-19T16:47:11Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* Proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
I have added some screen shots of the [http://www.flickr.com/photos/wikinator/sets/72057594111379807/ | SVG IMAGENERATION] on my new Flickr account&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6192</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6192"/>
		<updated>2006-04-19T16:44:04Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6191</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6191"/>
		<updated>2006-04-19T16:36:56Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[[mailto:touchmewithsynchronicpulses@gmail.com  Justin Barca]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6190</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6190"/>
		<updated>2006-04-19T16:36:09Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[[mailto:touchmewithsynchronicpulses@gmail.com | Justin Barca ]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6189</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6189"/>
		<updated>2006-04-19T16:35:17Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;br /&gt;
&lt;br /&gt;
==Afterwords==&lt;br /&gt;
&lt;br /&gt;
Because I have consistently applied myself to developing SVG generation scripts over the last year, I believe that I have a lot to offer to the project.  However, I am not familiar with the development scene at Inscape, and thus would like to communicate with those who are.  I think it would help me to refine my proposal into something that fits better with the current development of the project.  Because doing Summer of Code with Inkscape would be my absolute dream job (considering that I've been pursuing this stuff as a hobby for a year now), I would greatly appreciate your assistance.  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
[[Justin Barca | mailto:touchmewithsynchronicpulses@gmail.com]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6188</id>
		<title>ImprovingPythonEffectsAPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=ImprovingPythonEffectsAPI&amp;diff=6188"/>
		<updated>2006-04-19T16:25:42Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
I applied last year for the Summer of Code and was really excited about the prospects of working on Inkscape because it was a program that I had just begun to use regularly.  Although at the time I was using it mostly as a viewer, I was quite interested in vector graphics and particularly SVG for the sake of its open standards and ease of manipulation.  Last summer I began working on a series of scripts to generate SVG images.  I chose to apply for one of the suggested projects becasue I figured I would be more likely to get the position, but I put little effort into my proposal, basically just cutting and pasting the suggestion.  I have decided that instead of choosing one of the projects that Inkscape suggests, I would create my own proposal related to the work I have been doing with stand-along Python scripts to generate SVG.  I will explain what I've done and how I think it can be integrated into the python extensions in Inkscape.  &lt;br /&gt;
&lt;br /&gt;
I've dubbed my bag of scripts  PySVaG because it rhymes with &amp;quot;spice bag&amp;quot; and I like to think of this stuff as &amp;quot;eye spice&amp;quot; (instead of &amp;quot;eye candy&amp;quot;).  My motivations in creating scripts to generate SVG was to allow me to plot complex geometrically defined patterns in a precise way.  When I searched over the internet for code that could do this, I didn't find what I needed.  I learned about ActionScript, but I didn't want to get locked into a proprietary standard. I also learned a bit about Javascript and the use of it to modify the DOM in SVG, but I wasn't liking JavaScript for generating SVG.   &lt;br /&gt;
&lt;br /&gt;
I first of all wanted a simpler way than having to write a setAttribute line for every attribute as in JavaScript; instead I wanted to be able to call a construtor in order to add elements, using the simplicity and power of Object-Oriented Programming in Python to abstract SVG images in a clearer way.  One of the first things I accomplished was to make the DOM tree easily accessible though the use of Amara.  This made all attributes represented as a dictionary (which I later found out was already done by the extension tutorial) and the elements of the tree were easily traversed using built-in array index overloading (term ??).   &lt;br /&gt;
&lt;br /&gt;
Though these scripts can not run in server-side web browsing like JavaScript can, they were not designed to do so; instead they were designed to be a library of functions that generate complex SVG shapes.  Some of these scripts may draw thousands of lines, and so it would be inefficient to generate the image every time it is viewed on a web page.  Instead the script runs once and outputs an .svg file.      &lt;br /&gt;
&lt;br /&gt;
I looked for a really simple 2D geometry library but found nothing which suited the task, so I created one for the purpose of representing points as objects that could be manipulated by different algorithms and formulas. C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
I found there was a richness of geometric/design problems that could be fueled by the desire to turn imagination into perfect symetric generation.  In my proposal, I have proposed a number of features/algorithms that I have already implemented in my stand-alone SVG applications.  I have marked these with a &amp;quot;*#*&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
&lt;br /&gt;
My goals in working on the python extensions would be to improve the python plugin api&lt;br /&gt;
* Mathematical libraries for plotting points&lt;br /&gt;
* Cartesian and Polar points with conversion to and from each other.  Operations such as addition, subtraction, dot product, scalar multiplication *#*&lt;br /&gt;
* Midpoint of two points  *#*&lt;br /&gt;
* Point at a fraction of a distance from point A to point B *#*&lt;br /&gt;
* pointsBetween - given A and B, returns n equidistant points along the line *#*&lt;br /&gt;
* extendBend - given two points A and B, a distance and an angle, returns a point C which results from extending distance out from AB and then bending BC about B by the given angle *#*&lt;br /&gt;
* reflection - given a line AB and point C, returns the reflection of C in AB *#*&lt;br /&gt;
*higher level of abstraction in accessing the document&lt;br /&gt;
*develop a rich set of functions for manipulating paths &lt;br /&gt;
** abstractions for each path command and random access to the list of commands (so you can look backward and see what point the inspected command is starting from) *#*&lt;br /&gt;
** path distance calculation *#*&lt;br /&gt;
** convert a quadradic bezier into a cubic bezier *#* figured out this one purely by experimentation&lt;br /&gt;
** each Command object (i.e. one of class CubicBezierCommand)  stores control points and nodes as Point objects *#*&lt;br /&gt;
** return an array of references to all Points in the path (which could then be operated on by some function or other operation) *#*&lt;br /&gt;
** create a closed symetrical path out of an open path that is one side of the shape by appending it's mirror (along the start-end line) to itself &lt;br /&gt;
** develop new ways of constructing and representing bezier curves relative to their start and end points i.e. where the control points are represented as a vector relative to the base line of the curve *#*&lt;br /&gt;
** functions to return points a certain distance along a path, or a certain percentage of the distance of the path&lt;br /&gt;
** functions to do complex path slicing/merging where the number of commands is increasing or decreasing&lt;br /&gt;
*add a number of &amp;quot;autoShapes&amp;quot; extensions that would generate different shapes given particular parameters from a GUI&lt;br /&gt;
** circle unit subdivision algorithm *#*&lt;br /&gt;
** Cartesian and Poler graph with unit subdivision&lt;br /&gt;
** Ruler dashes with unit subdivision&lt;br /&gt;
** polygon star&amp;quot; (see wikipedia) *#*&lt;br /&gt;
** hexagon grid *#*&lt;br /&gt;
** flower-like radial shapes *#* some, but there's many possibilities&lt;br /&gt;
** series of circles forming a Cartoid *#*&lt;br /&gt;
** generation of phi spiral and phi spiral lattice (think dreamcatcher pattern) *#* (but I can't figure out hot to get my  spiral curves smoother :( )&lt;br /&gt;
** zig zag and loop-de-loop line generation *#*&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Google_Summer_of_Code_2006&amp;diff=6187</id>
		<title>Google Summer of Code 2006</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Google_Summer_of_Code_2006&amp;diff=6187"/>
		<updated>2006-04-19T16:18:38Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* SOC 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOC 2006 ===&lt;br /&gt;
&lt;br /&gt;
Google has been kind enough to invite Inkscape to participate as a mentoring organization in the Summer of Code 2006.  The students and developers had a lot of fun last year, and resulted in some _great_ additions to the software, so we are very enthused about this year.&lt;br /&gt;
&lt;br /&gt;
Below is a list of ideas that Inkscape developers think might make good projects.  Please do not let this list constrain you; if you have a good idea beyond what is listed we'd love to see it!&lt;br /&gt;
&lt;br /&gt;
Also, we would strongly encourage students to contact us on the Inkscape developer's list prior to submitting your proposal.  This gives us a chance to get to know you and to give you feedback that will strengthen your proposal.&lt;br /&gt;
&lt;br /&gt;
* http://gould.cx/ted/blog/Google_SoC_2&lt;br /&gt;
&lt;br /&gt;
* http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1457179&amp;amp;group_id=93438&amp;amp;atid=604309&lt;br /&gt;
&lt;br /&gt;
* Debug Inkscape's memory leaks and decrease memory usage&lt;br /&gt;
&lt;br /&gt;
* Implement http://wiki.inkscape.org/wiki/index.php/Required_PDF_Support (I know of UberConverter, but PDF is the most important interchange format so we should better support it natively)&lt;br /&gt;
&lt;br /&gt;
* Implement EPS import by reusing Scribus' EPS import library for Inkscape.&lt;br /&gt;
&lt;br /&gt;
* SVG support in OpenOffice (not exactly Inkscape development, but would allow Inkscape users to paste in art rather than having to export to png and really promote usuage of Inkscape). Not to mention eliminating all those duplicate svg/png image files!&lt;br /&gt;
&lt;br /&gt;
* More potrace/SIOX/etc. style features/development&lt;br /&gt;
&lt;br /&gt;
* Extending the online InkscapeSVG stuff - might be very cool for sharing sketches, etc&lt;br /&gt;
&lt;br /&gt;
* Building a public whiteboard server for Inkscape users, with a web site of its own, user galleries, interest groups, scheduled drawathons, connections to OCAL, etc.&lt;br /&gt;
&lt;br /&gt;
* Make Inkboard work on Windows&lt;br /&gt;
&lt;br /&gt;
* Develop a prototype for a cross-platform open API to allow vector graphics tools to apply bitmap effects (e.g. from GIMP or ImageMagick) transparently to vector graphics.&lt;br /&gt;
&lt;br /&gt;
* Add new kinds of grid functionality, like perspective grid, hex grid, iso grid, etc.&lt;br /&gt;
&lt;br /&gt;
* Create or enhance converters for file formats like Visio, CorelDraw, etc. etc.&lt;br /&gt;
&lt;br /&gt;
* Skeletal Strokes and Effect Lines - A few links: Our wiki page on Expression [[http://wiki.inkscape.org/wiki/index.php/Expression]], Technical papers on Skeletal Strokes [[http://portal.acm.org/citation.cfm?id=192186]], Examples - [[http://northlite.50megs.com/expr/effectlines.htm]], [[http://www.wa.commufa.jp/~ksg/p_pfwp5_cgf.htm]], [[http://personal-computer-tutor.com/abc4/v36/sara36.htm]].&lt;br /&gt;
&lt;br /&gt;
* Improve the functionality and ease of use of the python effects API (see my proposal in the [[ImprovingPythonExtensionAPI]] page )&lt;br /&gt;
&lt;br /&gt;
=== bbyak projects (mentored by  bulia) ===&lt;br /&gt;
&lt;br /&gt;
* Implement SVG filters, at least Gaussian blur&lt;br /&gt;
&lt;br /&gt;
* Bucket fill tool: http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1123138&amp;amp;group_id=93438&amp;amp;atid=604309&lt;br /&gt;
&lt;br /&gt;
* Color adjust dialog (brightness/contrast, HSL, &amp;quot;colorize&amp;quot;) which would work on any number of vector objects (with flat, gradient, or pattern fill) as well as bitmaps&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== SOC 2005 ===&lt;br /&gt;
* [[SOC Accepted Proposals]]&lt;br /&gt;
* [[SOC Writing Project Proposals]]&lt;br /&gt;
* [[SOC Selection Criteria]]&lt;br /&gt;
* [[SOC Original Project Prompts]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Google_Summer_of_Code_2006&amp;diff=6186</id>
		<title>Google Summer of Code 2006</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Google_Summer_of_Code_2006&amp;diff=6186"/>
		<updated>2006-04-19T16:17:36Z</updated>

		<summary type="html">&lt;p&gt;Justin.Wikinator: /* SOC 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SOC 2006 ===&lt;br /&gt;
&lt;br /&gt;
Google has been kind enough to invite Inkscape to participate as a mentoring organization in the Summer of Code 2006.  The students and developers had a lot of fun last year, and resulted in some _great_ additions to the software, so we are very enthused about this year.&lt;br /&gt;
&lt;br /&gt;
Below is a list of ideas that Inkscape developers think might make good projects.  Please do not let this list constrain you; if you have a good idea beyond what is listed we'd love to see it!&lt;br /&gt;
&lt;br /&gt;
Also, we would strongly encourage students to contact us on the Inkscape developer's list prior to submitting your proposal.  This gives us a chance to get to know you and to give you feedback that will strengthen your proposal.&lt;br /&gt;
&lt;br /&gt;
* http://gould.cx/ted/blog/Google_SoC_2&lt;br /&gt;
&lt;br /&gt;
* http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1457179&amp;amp;group_id=93438&amp;amp;atid=604309&lt;br /&gt;
&lt;br /&gt;
* Debug Inkscape's memory leaks and decrease memory usage&lt;br /&gt;
&lt;br /&gt;
* Implement http://wiki.inkscape.org/wiki/index.php/Required_PDF_Support (I know of UberConverter, but PDF is the most important interchange format so we should better support it natively)&lt;br /&gt;
&lt;br /&gt;
* Implement EPS import by reusing Scribus' EPS import library for Inkscape.&lt;br /&gt;
&lt;br /&gt;
* SVG support in OpenOffice (not exactly Inkscape development, but would allow Inkscape users to paste in art rather than having to export to png and really promote usuage of Inkscape). Not to mention eliminating all those duplicate svg/png image files!&lt;br /&gt;
&lt;br /&gt;
* More potrace/SIOX/etc. style features/development&lt;br /&gt;
&lt;br /&gt;
* Extending the online InkscapeSVG stuff - might be very cool for sharing sketches, etc&lt;br /&gt;
&lt;br /&gt;
* Building a public whiteboard server for Inkscape users, with a web site of its own, user galleries, interest groups, scheduled drawathons, connections to OCAL, etc.&lt;br /&gt;
&lt;br /&gt;
* Make Inkboard work on Windows&lt;br /&gt;
&lt;br /&gt;
* Develop a prototype for a cross-platform open API to allow vector graphics tools to apply bitmap effects (e.g. from GIMP or ImageMagick) transparently to vector graphics.&lt;br /&gt;
&lt;br /&gt;
* Add new kinds of grid functionality, like perspective grid, hex grid, iso grid, etc.&lt;br /&gt;
&lt;br /&gt;
* Create or enhance converters for file formats like Visio, CorelDraw, etc. etc.&lt;br /&gt;
&lt;br /&gt;
* Skeletal Strokes and Effect Lines - A few links: Our wiki page on Expression [[http://wiki.inkscape.org/wiki/index.php/Expression]], Technical papers on Skeletal Strokes [[http://portal.acm.org/citation.cfm?id=192186]], Examples - [[http://northlite.50megs.com/expr/effectlines.htm]], [[http://www.wa.commufa.jp/~ksg/p_pfwp5_cgf.htm]], [[http://personal-computer-tutor.com/abc4/v36/sara36.htm]].&lt;br /&gt;
&lt;br /&gt;
* Improve the functionality and ease of use of the python effects API (see my proposal in the [ImprovingPythonExtensionAPI] page )&lt;br /&gt;
&lt;br /&gt;
=== bbyak projects (mentored by  bulia) ===&lt;br /&gt;
&lt;br /&gt;
* Implement SVG filters, at least Gaussian blur&lt;br /&gt;
&lt;br /&gt;
* Bucket fill tool: http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1123138&amp;amp;group_id=93438&amp;amp;atid=604309&lt;br /&gt;
&lt;br /&gt;
* Color adjust dialog (brightness/contrast, HSL, &amp;quot;colorize&amp;quot;) which would work on any number of vector objects (with flat, gradient, or pattern fill) as well as bitmaps&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== SOC 2005 ===&lt;br /&gt;
* [[SOC Accepted Proposals]]&lt;br /&gt;
* [[SOC Writing Project Proposals]]&lt;br /&gt;
* [[SOC Selection Criteria]]&lt;br /&gt;
* [[SOC Original Project Prompts]]&lt;/div&gt;</summary>
		<author><name>Justin.Wikinator</name></author>
	</entry>
</feed>