From efaae89dfcd1ae9259f48fe438016e952c770ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rg=20Lehni?= Date: Mon, 5 Jan 2015 21:47:15 +0100 Subject: [PATCH] No need to add 0. --- src/path/PathItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/PathItem.js b/src/path/PathItem.js index cb39a4ba..68b8521f 100644 --- a/src/path/PathItem.js +++ b/src/path/PathItem.js @@ -253,7 +253,7 @@ var PathItem = Item.extend(/** @lends PathItem# */{ case 'a': for (var j = 0; j < length; j += 7) { this.arcTo(current = getPoint(j + 5), - new Size(+coords[j + 0], +coords[j + 1]), + new Size(+coords[j], +coords[j + 1]), +coords[j + 2], +coords[j + 4], +coords[j + 3]); } break;