mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 08:37:56 +00:00
29 lines
856 B
JavaScript
29 lines
856 B
JavaScript
const findConvexHull = async (points) => {
|
|
const { sortBy, uniqWith } = await import('https://cdn.jsdelivr.net/npm/lodash-es@4.17.21/lodash.min.js');
|
|
|
|
if (points.length < 3) return points;
|
|
|
|
const sorted = sortBy(uniqWith(points, (a, b) => a.x === b.x && a.y === b.y), ['x', 'y']);
|
|
|
|
if (sorted.length < 3) return sorted;
|
|
|
|
const cross = (o, a, b) => (a.x - o.x) * (b.y - o.y) - (a.y - o.y) * (b.x - o.x);
|
|
|
|
const buildHalf = (pts) => {
|
|
const hull = [];
|
|
for (const p of pts) {
|
|
while (hull.length >= 2 && cross(hull[hull.length - 2], hull[hull.length - 1], p) <= 0) {
|
|
hull.pop();
|
|
}
|
|
hull.push(p);
|
|
}
|
|
hull.pop();
|
|
return hull;
|
|
};
|
|
|
|
const lower = buildHalf(sorted);
|
|
const upper = buildHalf([...sorted].reverse());
|
|
|
|
return [...lower, ...upper].reverse();
|
|
};
|
|
export default findConvexHull; |