diff options
author | wout <wout@impinc.co.uk> | 2014-02-05 14:02:38 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-02-05 14:02:38 +0100 |
commit | 85a0e6e28793fa85282857e665e437ab4ac6c875 (patch) | |
tree | 4ff37f1bcbc1528efe8a668111976f8858db545f /src/patharray.js | |
parent | 7bb2ec3885a129933e7dd02a73ce8260732d34ac (diff) | |
download | svg.js-85a0e6e28793fa85282857e665e437ab4ac6c875.tar.gz svg.js-85a0e6e28793fa85282857e665e437ab4ac6c875.zip |
Fix in patharray arc
Diffstat (limited to 'src/patharray.js')
-rw-r--r-- | src/patharray.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/patharray.js b/src/patharray.js index 92ec2e4..26b3262 100644 --- a/src/patharray.js +++ b/src/patharray.js @@ -37,9 +37,9 @@ SVG.extend(SVG.PathArray, { s.push( this.value[i].r1 , this.value[i].r2 - , this.value[i].a || 0 - , this.value[i].l || 0 - , this.value[i].s || 0 + , this.value[i].a + , this.value[i].l === true ? 1 : 0 + , this.value[i].s === true ? 1 : 0 , this.value[i].x , this.value[i].y ) |