npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quickhull3d

v3.1.1

Published

A quickhull implementation for 3d points

Downloads

1,469

Readme

quickhull3d

NPM version Codecov Status FOSSA Status

A robust quickhull implementation to find the convex hull of a set of 3d points in O(n log n) ported from John Lloyd implementation

Additional implementation material:

  • Dirk Gregorius presentation: https://archive.org/details/GDC2014Gregorius
  • Convex Hull Generation with Quick Hull by Randy Gaul (lost link)

This library was incorporated into ThreeJS!. Thanks to https://github.com/Mugen87 for his work to move the primitives to ThreeJS primitives, the quickhull3d library will always be library agnostic and will operate with raw arrays.

Features

  • Key functions are well documented (including ascii graphics)
  • Faster than other JavaScript implementations of convex hull

Demo

Click on the image to see a demo!

demo

Minimal browser demo (using v3 or above)

<script type="module">
  import qh from 'https://cdn.jsdelivr.net/npm/quickhull3d@<version>/+esm'

  const points = [
    [0, 1, 0],
    [1, -1, 1],
    [-1, -1, 1],
    [0, -1, -1]
  ]

  const faces = qh(points)
  console.log(faces)
  // output:
  // [ [ 2, 1, 0 ], [ 3, 1, 2 ], [ 3, 0, 1 ], [ 3, 2, 0 ] ]
  // 1st face:
  //   points[2] = [-1, -1, 1]
  //   points[1] = [1, -1, 1]
  //   points[0] = [0, 1, 0]
  //   normal = (points[1] - points[2]) x (points[0] - points[2])
</script>

Installation

$ npm install --save quickhull3d

Usage

import qh from 'quickhull3d'

qh(points, options)

params

  • points {Array<Array>} an array of 3d points whose convex hull needs to be computed
  • options {Object} (optional)
  • options.skipTriangulation {Boolean} True to skip the triangulation of the faces (returning n-vertex faces)

returns An array of 3 element arrays, each subarray has the indices of 3 points which form a face whose normal points outside the polyhedra

isPointInsideHull(point, points, faces)

params

  • point {Array} The point that we want to check that it's a convex hull.
  • points {Array<Array>} The array of 3d points whose convex hull was computed
  • faces {Array<Array>} An array of 3 element arrays, each subarray has the indices of 3 points which form a face whose normal points outside the polyhedra

returns true if the point point is inside the convex hull

example

import qh, { isPointInsideHull } from 'quickhull3d'

const points = [
  [0, 0, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1],
  [1, 1, 0], [1, 0, 1], [0, 1, 1], [1, 1, 1]
]
const faces = qh(points)
expect(isPointInsideHull([0.5, 0.5, 0.5], points, faces)).toBe(true)
expect(isPointInsideHull([0, 0, -0.1], points, faces)).toBe(false)

Constructor

import QuickHull from 'quickhull3d/dist/QuickHull'

instance = new QuickHull(points)

params

  • points {Array} an array of 3d points whose convex hull needs to be computed

instance.build()

Computes the quickhull of all the points stored in the instance

time complexity O(n log n)

instance.collectFaces(skipTriangulation)

params

  • skipTriangulation {Boolean} (default: false) True to skip the triangulation and return n-vertices faces

returns

An array of 3-element arrays (or n-element arrays if skipTriangulation = true) which are the faces of the convex hull

Example

import qh from 'quickhull3d'
const points = [
  [0, 1, 0],
  [1, -1, 1],
  [-1, -1, 1],
  [0, -1, -1]
]

qh(points)
// output:
// [ [ 2, 0, 3 ], [ 0, 1, 3 ], [ 2, 1, 0 ], [ 2, 3, 1 ] ]
// 1st face:
//   points[2] = [-1, -1, 1]
//   points[0] = [0, 1, 0]
//   points[3] = [0, -1, -1]
//   normal = (points[0] - points[2]) x (points[3] - points[2])

Using the constructor:

import { QuickHull } from 'quickhull3d'
const points = [
  [0, 1, 0],
  [1, -1, 1],
  [-1, -1, 1],
  [0, -1, -1]
];
const instance = new QuickHull(points)
instance.build()
instance.collectFaces()   // returns an array of 3-element arrays

Benchmarks

Specs:

MacBook Pro (Retina, Mid 2012)
2.3 GHz Intel Core i7
8 GB 1600 MHz DDR3
NVIDIA GeForce GT 650M 1024 MB

Versus convex-hull

// LEGEND: program:numberOfPoints
quickhull3d:100 x 6,212 ops/sec 1.24% (92 runs sampled)
convexhull:100 x 2,507 ops/sec 1.20% (89 runs sampled)
quickhull3d:1000 x 1,171 ops/sec 0.93% (97 runs sampled)
convexhull:1000 x 361 ops/sec 1.38% (88 runs sampled)
quickhull3d:10000 x 190 ops/sec 1.33% (87 runs sampled)
convexhull:10000 x 32.04 ops/sec 2.37% (56 runs sampled)
quickhull3d:100000 x 11.90 ops/sec 6.34% (34 runs sampled)
convexhull:100000 x 2.81 ops/sec 2.17% (11 runs sampled)
quickhull3d:200000 x 5.11 ops/sec 10.05% (18 runs sampled)
convexhull:200000 x 1.23 ops/sec 3.33% (8 runs sampled)

quickhull3d vs convexhull

License

Mauricio Poppe. Licensed under the MIT license.

FOSSA Status