Clean up.

This commit is contained in:
Jürg Lehni 2011-06-04 15:16:30 +01:00
parent 91886211b5
commit 45a04891ee

View file

@ -562,7 +562,8 @@ var Curve = this.Curve = Base.extend({
ux = vx; ux = vx;
if (uy < vy) if (uy < vy)
uy = vy; uy = vy;
return ux + uy <= 16 * Numerical.TOLERNACE * Numerical.TOLERNACE; // tolerance is 16 * tol ^ 2 // Tolerance is 16 * tol ^ 2
return ux + uy <= 16 * Numerical.TOLERNACE * Numerical.TOLERNACE;
*/ */
} }
} }