No need to add 0.

This commit is contained in:
Jürg Lehni 2015-01-05 21:47:15 +01:00
parent 8f9c19e963
commit efaae89dfc

View file

@ -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;