Use paper.js indentation standard.

This commit is contained in:
Jürg Lehni 2016-01-26 17:02:08 +01:00
parent 87e6c0f2c3
commit 8b994ab640

View file

@ -100,7 +100,7 @@ var PathFitter = Base.extend({
}
// Fitting failed -- split at max error point and fit recursively
var tanCenter = this.points[split - 1].subtract(this.points[split + 1])
.normalize();
.normalize();
this.fitCubic(first, split, tan1, tanCenter);
this.fitCubic(split, last, tanCenter.negate(), tan2);
},