Hi, > I am trying to modify path elements, and now, in order to modify a > single point I rewrite the whole d attribute for the path. Is there a > way to modify only one point in the path without having to rewrite it > completely?
You can use SVG DOM API SVGPathSegList to modify particular point on the Path. eg: SVGPathSegList segList = pathElement.getPathSegList(); then you can iterate the SVGPathSegList. Check the SVG DOM API for more information on SVGPathSegList Regards Tonny Kohar -- Sketsa SVG Graphics Editor http://www.kiyut.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
