SVG
< Programming Resources
< ACW
< ganimedes
SVG-edit is a fast, web-based, JavaScript-driven SVG drawing editor that works in any modern browser. 2013-04-09 is the upcoming community conference call (Make sure to join us!) 2013-02-12 was the previous community conference call (You can listen to the recording) 2013-01-15: SVG-edit 2.6 was released Try out SVG-edit 2.6 demo , the latest stable release. For the adventurous ones, please do try out the trunk build demo (This is the development code of the next version).
Demo of Raphael JS grouping plugin Documentation var myRectangles = [obj1,obj2...etc];// the array of elements which will form the group var myGroup = r.group(0,myRectangles);// '0' is the number of the 'svg' tag in the page myGroup.translate(250,55);// translate the group to 250,55; myGroup.rotate(45,20,48);// rotates the group myGroup.scale(.5,.5);// scales the group myGroup.copy(circle);// copies a Raphael JS element myGroup.push(newRect);// adds a new object to the group at a later time var someAttribute = myGroup.getAttr('translate'); // returns object (axis as x,y,z)