cleanup pip

This commit is contained in:
Val Erastov 2017-12-04 22:52:11 -08:00
parent 276927cd4f
commit 6cbfb5e37f

View file

@ -8,8 +8,8 @@ export default function(outerLoop, innerLoops, tol) {
return areEqual(a, b, tol);
}
function veq(a, b, TOLERANCE) {
return eq(a.x, b.x, TOLERANCE) && eq(a.y, b.y, TOLERANCE);
function veq(a, b) {
return eq(a.x, b.x) && eq(a.y, b.y);
}
function classifyPointInsideLoop( pt, loop ) {