diff options
author | wout <wout@impinc.co.uk> | 2012-12-21 18:20:42 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2012-12-21 18:20:42 +0100 |
commit | 34a2a1ad00c96f3ef222a08ff5516b2067f7af87 (patch) | |
tree | 89d878e832c793e53bc954cb0f4a097b0a0c9678 /README.md | |
parent | b56c077bf6b478e5290c1286d82ec64c6d606b8d (diff) | |
download | svg.js-34a2a1ad00c96f3ef222a08ff5516b2067f7af87.tar.gz svg.js-34a2a1ad00c96f3ef222a08ff5516b2067f7af87.zip |
'bbox()' bow also returning cx and cy0.1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -160,7 +160,7 @@ path.bbox(); This will return a SVGRect element as a js object: ```javascript -{ height: 20, width: 20, y: 20, x: 10 } +{ height: 20, width: 20, y: 20, x: 10, cx: 30, cy: 20 } ``` |