]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Sun, 24 Mar 2013 18:50:07 +0000 (19:50 +0100)
committerwout <wout@impinc.co.uk>
Sun, 24 Mar 2013 18:50:07 +0000 (19:50 +0100)
README.md

index 25cf24e7b84cfccbeca4dc5b7e904bd546e8278e..85d3908c829258672932b9c1b99aeed0bff28ba3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -135,6 +135,13 @@ var polyline = draw.polyline('10,20 30,40 50,60')
 
 Polyline strings consist of a list of points separated by spaces: `x,y x,y x,y`.
 
+As an alternative an array of points will work as well:
+
+```javascript
+// polyline([[x,y], [x,y], [x,y]])
+var polyline = draw.polyline([[10,20], [30,40], [50,60]])
+```
+
 
 ### Polygon
 The polygon element, unlike the polyline element, defines a closed shape consisting of a set of connected straight line segments: