]> source.dussan.org Git - svg.js.git/commitdiff
Better explanation for Array.move() 237/head
authorpeteruithoven <peter@peteruithoven.nl>
Tue, 29 Jul 2014 10:47:57 +0000 (12:47 +0200)
committerpeteruithoven <peter@peteruithoven.nl>
Tue, 29 Jul 2014 10:47:57 +0000 (12:47 +0200)
(Copied most from Manipulating elements move() explanation)

README.md

index a6546c7acfd469dc85ef51678815ef4fc1c9e539..ed08b5355f066fe9f9b3a00e24b208e01ef1797b 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -2954,10 +2954,10 @@ Note that this method is currently not available on `SVG.PathArray` but will be
 __`returns`: `itself`__
 
 ### move()
-Moves geometry of the array with the given `x` and `y` values:
+Moves geometry to a given `x` and `y` position by its upper left corner:
 
 ```javascript
-var array = new SVG.PointArray([[0, 0], [100, 100]])
+var array = new SVG.PointArray([[10, 10], [100, 100]])
 array.move(33,75)
 array.toString() //-> returns '33,75 133,175'
 ```