-------------
* Added the ability to zoom the canvas, even while running an animation.
* Boolean operations on paths: Use path.intersects(other) to check if two paths intersect.
You can also use path.union(other), path.intersect(other), path.difference(other), path.xor(other)
to get a new path with the boolean operation applied. Check out the SwissCheese example in the
Advanced folder.
* Fit operation on paths that fits a path to the given boundaries:
fit(self, x=None, y=None, width=None, height=None, stretch=False)
* Included psyco in the core build so the graph library is faster.
* Included numpy in the core (next to Numeric) for faster math.
* Jumping to a certain line number works.