SkillAgentSearch skills...

Quickhull

A pure javascript implementation of the QuickHull algorithm for finding the smallest polygon enclosing a set of points

Install / Use

/learn @claytongulick/Quickhull
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

QuickHull

A pure javascript implementation of the QuickHull algorithm for finding the smallest polygon enclosing a set of points

Install

npm install quickhull

Usage

let QuickHull = require('quickhull');

let points = [
    {x: 1, y:1},
    {x: 5, y: 10},
    {x: 4, y: 11},
    {x: 9, y: 2}
];

let hull = QuickHull(points);

console.log(JSON.stringify(hull)); //TA-DA!
View on GitHub
GitHub Stars7
CategoryDevelopment
Updated11mo ago
Forks3

Languages

JavaScript

Security Score

77/100

Audited on May 5, 2025

No findings