diff options
author | wout <wout@impinc.co.uk> | 2014-01-29 21:28:25 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-01-29 21:28:25 +0100 |
commit | a52a1d7e362382c93d71d2cea27a4a691cd6d215 (patch) | |
tree | 55733c4d51a4d665d10fdd758895e67bc65919cd | |
parent | 5b6736666dd85f8a063b87e6c6483ea47be4391c (diff) | |
download | svg.js-a52a1d7e362382c93d71d2cea27a4a691cd6d215.tar.gz svg.js-a52a1d7e362382c93d71d2cea27a4a691cd6d215.zip |
Updated README
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1799,16 +1799,16 @@ The dynamic representation: new SVG.PointArray([[0, 0], [100, 100]]) ``` -Note that every instance of `SVG.Polyline` and `SVG.Polygon` carry a reference to the `SVG.PointArray` instance: +Note that every instance of `SVG.Polyline` and `SVG.Polygon` carries a reference to the `SVG.PointArray` instance: ```javascript polygon.array //-> returns the SVG.PointArray instance ``` -_`SVG.PointArray` inherits from `SVG.Array`_ +_Javascript inheritance stack: `SVG.PointArray` < `SVG.Array`_ ### SVG.PathArray -Path arrays carry object with the representation of the path string: +Path arrays carry objects representing every point in a path string: ```javascript 'M 0 0 L 100 100 z' @@ -1830,7 +1830,7 @@ Note that every instance of `SVG.Path` carries a reference to the `SVG.PathArray polygon.array //-> returns the SVG.PointArray instance ``` -_`SVG.PathArray` inherits from `SVG.Array`_ +_Javascript inheritance stack: `SVG.PathArray` < `SVG.Array`_ ### morph() |