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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@allmaps/triangulate

v1.0.0-beta.33

Published

Allmaps Triangulation Library

Readme

@allmaps/triangulate

This package provides methods to triangulate a polygon: i.e. return a set of triangles that partition the polygon.

It does this in a constrained way, where the triangles meet certain conditions: if a distance parameter is provided, the triangles are not larger than distance, and in general don't contain very sharp angles or very blunt angles.

This package is used internally in @allmaps/render to triangulate the full mask of a georeferenced map (using the GCPs as Steiner points and the appliable mask as Steiner polygons) into a set of triangles that can be rendered with WebGL.

How it works

It uses a modern constrained Delaunay triangulation algorithm for polygons, built using Delaunator and Constrainautor.

To learn more on how it works, check out this Observable notebook.

In short, triangles are made firstly using a grid of points within the bounding box of the polygon, spaced distance apart, and with points resulting from the polygons edges (interpolated using distance), provided Steiner points and points from the Steiner Polygons. From all these points, a Delaunay triangulation is performed. This results in most grid cell resulting in two well-conditioned triangles. Then the triangulation is constrained with the edges of the interpolated polygon and the edges of the interpolated Steiner polygons.

Installation

This is an ESM-only module that works in browsers and Node.js.

Install with pnpm:

pnpm install @allmaps/triangulate

Usage

This package exposes two functions: triangulate() simply triangulates a polygon and returns the triangles, and triangulateToUnique() returns a set of objects that describe the triangulation using an array of unique points and edges between them.

In the simplest case, it can be used as follows:

import { triangulate } from '@allmaps/triangulate'

// Note that polygons are in double brackets (an array of an outer ring, and possibly inner rings if there are holes) and their rings are not round-trip (the first coordinate is not repeated at the and)
const polygon = [
  [
    [0.592, 0.953],
    [0.304, 2.394],
    [2.904, 2.201],
    [2.394, 0.232]
  ]
]

const distance = 1

// Compute constrained triangulation of `polygon` using a grid of size `distance`
const triangles = triangulate(polygon, distance)

// triangles = [
//   [
//     [ 1.304, 1.232 ],
//     [ 1.4655588463411926, 0.6034795070965593 ],
//     [ 0.592, 0.953 ]
//   ],
//   ...
// ]

To both functions, the following options can be passed:

  • steinerPoints: Steiner points. These become a third group of points taken into account when building the triangles.
  • steinerPolygons: Steiner polygons. These are polygons whose points need to be added as Steiner points, and whose edges (interpolated using distance) also need to be constrained.
  • minimumTriangleAngle: The minimum angle (in radians) of the resulting triangles. Using this options, sliver polygons that are possibly produced by internal functions can be removed. Default: 0.01.
  • computeInsideSteinerPolygons: Whether or not to compute, for each triangle, whether they are inside the Steiner polygons or not.

License

MIT

API

Notes

Stability

  • Constrainautor doesn't allow self-intersection polygons and will raise an error for such inputs.

Benchmark

For a 10 point polygon (with diameter ~ 200), here are some benchmarks for computing the triangulation with given distances:

  • triangulate(polygon, 1000) (no grid points): 74544 ops/s to compute 8 triangles
  • triangulate(polygon, 100): 56849 ops/s to compute 11 triangles
  • triangulate(polygon, 10): 2163 ops/s to compute 435 triangles
  • triangulate(polygon, 1): 3 ops/s to compute 38352 triangles

See ./bench/index.js.

To run the benchmark, run npm run bench.