mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Clean up.
This commit is contained in:
parent
91886211b5
commit
45a04891ee
1 changed files with 2 additions and 1 deletions
|
@ -562,7 +562,8 @@ var Curve = this.Curve = Base.extend({
|
|||
ux = vx;
|
||||
if (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;
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue