Fix typo.

This commit is contained in:
Jürg Lehni 2013-02-28 19:29:44 -08:00
parent 0f140e391d
commit 82cefa9846

View file

@ -118,7 +118,7 @@ var PathItem = this.PathItem = Item.extend(/** @lends PathItem# */{
for (var j = 0; j < coords.length; j += 2) {
// Calculate reflection of previous control points
control = current.multiply(2).subtract(control);
path.quadraticCurveTo(control, getPoint(j, true));
this.quadraticCurveTo(control, getPoint(j, true));
}
break;
case 'a':