Fix new error in quadraticCurveTo().

We don't seem to have test-cases for these yet.
This commit is contained in:
Jürg Lehni 2012-10-18 14:29:53 -07:00
parent 30374ae3b4
commit 6441a682a8

View file

@ -1690,7 +1690,7 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{
this.cubicCurveTo(
_handle.add(current.subtract(_handle).multiply(1 / 3)),
_handle.add(to.subtract(_handle).multiply(1 / 3)),
_to
to
);
},