Merge branch 'master' of github.com:paperjs/paper.js

This commit is contained in:
Jürg Lehni 2013-05-28 08:07:26 -07:00
commit a952e6f5ad

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() {