diff --git a/src/path/Path.js b/src/path/Path.js index de5afa2c..961fa3f4 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -2179,7 +2179,7 @@ var Path = this.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() {