hardc0d3r: > and how do i use the mothods of the SVGOMPathElement? methods like > createSVGPathSegCurvetoCubicSmoothRel? i tried using it but nothing visually > happens.. will this draw a curve?
No, those createSVGPathSeg* methods create and return a new SVGPathSeg object which you can then insert into a path with pe.getPathSegList().appendItem(newPathSegObject). Make sure you read the descriptions of the path-related DOM interfaces from the SVG 1.1 spec: http://www.w3.org/TR/SVG11/paths.html#InterfaceSVGPathElement -- Cameron McCormack, http://mcc.id.au/ xmpp:[EMAIL PROTECTED] ▪ ICQ 26955922 ▪ MSN [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
