Merge pull request #231 from NorthNick/master

Path.arcBy bug fix
This commit is contained in:
Jürg Lehni 2013-05-28 07:53:58 -07:00
commit dd38e4aae6

View file

@ -2178,7 +2178,7 @@ var Path = PathItem.extend(/** @lends Path# */{
throughVector = Point.read(throughVector);
toVector = Point.read(toVector);
var current = getCurrentSegment(this)._point;
this.arcBy(current.add(throughVector), current.add(toVector));
this.arcTo(current.add(throughVector), current.add(toVector));
},
closePath: function() {