RE: Found mistake in SVG Primer

"David Dailey" <[email protected]> Wed, 30 Dec 2015 16:13:10 -0500
Newsgroups gmane.comp.web.svg
Message-ID <006301d14346$e3082ab0$a9188010$@net>
Thanks Ian. I don’t think the document is being maintained any longer, with various newer things being in the works, but if we ever get around to updating it, I’ll keep this correct observation at hand!

 

Cheers

David

 

From: Ian Ryan [mailto:[email protected]] 
Sent: Tuesday, December 29, 2015 8:29 PM
To: [email protected]
Subject: Found mistake in SVG Primer

 

Under http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#examples, in the 'zigzag' example that looks like a 'W', the code is incorrect.

 

the 'd' attribute of 'path' reads 

 

d="M 100 200 L 200 300, 300 20,0 400 300, 500 200"


but should be

 

d="M 100 200 L 200 300, 300 200, 400 300, 500 200"

 

Regards,
Ian