New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hull.js

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hull.js

JavaScript library that builds concave hulls (shapes) by set of points

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20K
increased by2.68%
Maintainers
1
Weekly downloads
 
Created
Source

Hull.js - JavaScript library that builds concave hull by set of points.

Examples

See live examples here.

Usage

var points = [ [236, 126], [234, 115], [238, 109], [247, 102], ... ];
hull(points, 50); // returns points of the hull (in clockwise order)

Params

  • 1st param - array of coordinates in format: [[x1, y1], [x2, y2], ..., [xn, yn]];
  • 2nd param - concavity. 1 - thin shape. Infinity - convex hull. By default 20.

How it works

Let's see step by step what happens when you call hull() function:

  1. Hull.js takes your source points of the shape:

  2. Builds convex hull:
  3. After that, the edges flex inward (according to `concavity` param). For example: `concavity = 80` `concavity = 40` `concavity = 20`
  4. Development

    npm install # install dependencies
    npm test	# build dist file and run tests
    

    Contribute

    If you want to get involved with Hull.js development, just use github flow and feel free to contribute!

    To-do

    • make point formats configurable to support formats like {x: 10, y: 10} and {lat: 52, lng: 82};
    • add new map based example that demonstrates usage with other point formats;
    • think about parallelisation of the calculations (on GPU or CPU);
    • think about automatic concavity adjustment based on density.

    Changelog

    0.2.0 — 20.10.2014

    Second version with better performance inspired by this article.

    0.1.0 — 06.09.2014

    First version based on Delaunay triangulation.

Keywords

FAQs

Package last updated on 21 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc