
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
monotone-convex-hull-2d
Advanced tools
Computes the convex hull of a set of points in the plane in O(n log(n)) time using the Monotone chain algorithm.
var convexHull = require('monotone-convex-hull-2d')
var points = [
[0, 0],
[1, 0],
[0, 1],
[1, 1],
[0.5, 0.5]
]
console.log(convexHull(points))
Output:
[ 0, 2, 3, 1 ]
npm install monotone-convex-hull-2d
require('monotone-convex-hull-2d')(points)
Construct the convex hull of a set of points.
points
is an array of points represented as an array of length 2 arraysReturns The convex hull of the point set represented by a clockwise oriented list of indices.
(c) 2014 Mikola Lysenko. MIT License
Visualizer (c) 2013 Dan Melanz
FAQs
Robust 2D convex hull algorithm
We found that monotone-convex-hull-2d demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.