Kivach
Cascading donations
Add repoPopularDonorsF.A.Q.
My repos

Footer

Subscribe to our newsletter

The latest news, articles, and resources, sent to your inbox.

DiscordTelegramTwitterMediumFacebookYouTubeGitHub

All information about repositories belongs to their owners.

More information about Kivach in the introductory article.

Built on Obyte

Total donated
Undistributed
Share with your subscribers:

Recipients

How the donated funds are distributed

Support the dependencies of mauriciopoppe/quickhull3d

Account's avatar
debug-js/debug
Lightweight debugging utility for Node.js and the browser
Account's avatar
mattdesl/get-plane-normal
gets a plane's normal from 3 points
Account's avatar
stackgl/gl-mat4
gl-matrix's mat4, split into smaller pieces
Account's avatar
stackgl/gl-quat
gl-matrix's quaternion, split into smaller pieces
Account's avatar
stackgl/gl-vec4
gl-matrix's vec4, split into smaller pieces
Account's avatar
mikolalysenko/monotone-convex-hull-2d
Robust 2D convex hull algorithm
Account's avatar
mauriciopoppe/point-line-distance
3-dimensional point line distance
Account's avatar
babel/babel
Babel compiler core.
Account's avatar
babel/babel
A Babel preset for each environment.
Account's avatar
babel/babel
Babel preset for TypeScript.
Account's avatar
jestjs/jest
Account's avatar
DefinitelyTyped/DefinitelyTyped
TypeScript definitions for debug
Account's avatar
DefinitelyTyped/DefinitelyTyped
TypeScript definitions for node
Account's avatar
tschaub/gh-pages
Publish to a gh-pages branch on GitHub (or any other branch on any other remote)
Account's avatar
jestjs/jest
Delightful JavaScript Testing.
Account's avatar
isaacs/rimraf
A deep deletion module for node (like `rm -rf`)
Account's avatar
standard/standard
JavaScript Standard Style
Account's avatar
kulshekhar/ts-jest
A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript
Account's avatar
VitorLuizC/ts-jest-resolver
A resolver for `jest` that uses same strategy as TS when resolving files with JavaScript extension (".js").
Account's avatar
TypeStrong/ts-loader
TypeScript loader for webpack
Account's avatar
microsoft/TypeScript
TypeScript is a language for application scale JavaScript development
Account's avatar
webpack/webpack-cli
CLI for webpack & friends

Support the repos that depend on this repository

Top contributors

mauriciopoppe's profile
mauriciopoppe
103 contributions
dependabot[bot]'s profile
dependabot[bot]
3 contributions
fossabot's profile
fossabot
1 contributions

Recent events

Kivach works on the Obyte network, and therefore you can track all donations.

No events yet
mauriciopoppe

mauriciopoppe/quickhull3d

A JS library to find the convex hull of a finite set of 3d points

TypeScript
149
19
MIT License

quickhull3d is a fast, pure‑JavaScript implementation of the Quickhull algorithm that computes the convex hull of a set of 3‑D points in O(n log n) time. It provides a simple `qh(points)` function (and a class‑based API) that returns the hull faces as index triples, plus a helper to test point inclusion, making it useful for graphics, geometry processing, and any web or Node.js project that needs efficient 3‑D convex‑hull calculations.