diff options
Diffstat (limited to 'src/patharray.js')
-rwxr-xr-x | src/patharray.js | 39 |
1 files changed, 1 insertions, 38 deletions
diff --git a/src/patharray.js b/src/patharray.js index 2ccb7d5..1a2fdd5 100755 --- a/src/patharray.js +++ b/src/patharray.js @@ -201,41 +201,4 @@ SVG.extend(SVG.PathArray, { return SVG.parser.path.getBBox() } -}) - -// PathArray Helpers -function arrayToString(a) { - for (var i = 0, il = a.length, s = ''; i < il; i++) { - s += a[i][0] - - if (a[i][1] != null) { - s += a[i][1] - - if (a[i][2] != null) { - s += ' ' - s += a[i][2] - - if (a[i][3] != null) { - s += ' ' - s += a[i][3] - s += ' ' - s += a[i][4] - - if (a[i][5] != null) { - s += ' ' - s += a[i][5] - s += ' ' - s += a[i][6] - - if (a[i][7] != null) { - s += ' ' - s += a[i][7] - } - } - } - } - } - } - - return s + ' ' -}
\ No newline at end of file +})
\ No newline at end of file |