We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import findIntersections from 'bentley-ottman-sweepline'; const test = [ [[0, 1], [3, 1]], [[2, 0], [2, 2]], ]; try { const intersectionz = findIntersections(test); console.log(intersectionz); } catch (e) { console.error(e); } TypeError: Tree is not a constructor`
import findIntersections from 'bentley-ottman-sweepline';
const test = [ [[0, 1], [3, 1]], [[2, 0], [2, 2]], ];
try { const intersectionz = findIntersections(test); console.log(intersectionz); } catch (e) { console.error(e); }