Indent with Tabs like rest of paperjs code.

This commit is contained in:
hkrish 2013-12-25 20:33:51 +01:00
parent 70070c14d2
commit b4c7bcae5e

View file

@ -1447,10 +1447,10 @@ new function() { // Scope for methods that require numerical integration
if (point){
// We need to return the parameters for the intersection,
// since they will be used for sorting
var t1 = Curve.getParameterOf(v1, point.x, point.y),
t2 = Curve.getParameterOf(v2, point.x, point.y);
addLocation(locations, curve1, t1, point, curve2, t2, point);
}
var t1 = Curve.getParameterOf(v1, point.x, point.y),
t2 = Curve.getParameterOf(v2, point.x, point.y);
addLocation(locations, curve1, t1, point, curve2, t2, point);
}
}
return { statics: /** @lends Curve */{