mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-13 20:02:41 +01:00
cleanup pip
This commit is contained in:
parent
276927cd4f
commit
6cbfb5e37f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue