Earcut 3.0.21

dotnet add package Earcut --version 3.0.21
                    
NuGet\Install-Package Earcut -Version 3.0.21
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Earcut" Version="3.0.21" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Earcut" Version="3.0.21" />
                    
Directory.Packages.props
<PackageReference Include="Earcut" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Earcut --version 3.0.21
                    
#r "nuget: Earcut, 3.0.21"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Earcut@3.0.21
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Earcut&version=3.0.21
                    
Install as a Cake Addin
#tool nuget:?package=Earcut&version=3.0.21
                    
Install as a Cake Tool

Logo

Earcut

Earcut on nuget.org Build Status Docs Build Status Test Status license code size

The fastest and smallest polygon triangulation library.
A port of Mapbox's Earcut algorithm to F#.

https://github.com/mapbox/earcut

Status

Stable for .NET 4.7 and .NET 6.0 and JS via Fable.

v3.0.2 ported to F# on 2025-11-8

All tests of the original JS version pass.

All relevant code is in Earcut.fs.
It contains the ported code without any major changes to the original logic.
It has no dependencies.

Performance

The F# port has about the same performance as the original JS version when compiled back to JS with Fable.

The algorithm

The library implements a modified ear slicing algorithm,
optimized by z-order curve hashing
and extended to handle holes, twisted polygons, degeneracies and self-intersections
in a way that doesn't guarantee correctness of triangulation,
but attempts to always produce acceptable results for practical data.

It's based on ideas from FIST: Fast Industrial-Strength Triangulation of Polygons by Martin Held
and Triangulation by Ear Clipping by David Eberly.

Why another triangulation library?

The aim of the original mapbox Earcut project is to create a triangulation library
that is fast enough for real-time triangulation in the browser,
sacrificing triangulation quality for raw speed and simplicity,
while being robust enough to handle most practical datasets without crashing or producing garbage.

If you want to get correct triangulation even on very bad data with lots of self-intersections
and earcut is not precise enough, take a look at libtess.js.

Usage

let triangles = Earcut.earcut([| 10.;0.; 0.;50.; 60.;60.; 70.;10.|], [||], 2) // returns [1;0;3; 3;2;1]

Parameters:

  • vertices - A flat array of vertex coordinates like [x0, y0, x1, y1, x2, y2, ...].
  • holeIndices - An array of hole starting indices. These indices refer to the point array, not the flattened vertices array.
    If you have an index into the flattened vertices array, divide it by dimensions to get the correct hole index.
    (e.g. [|4|] means the hole starts at point 4, i.e. at vertices[4 * dimensions]).
    Use null or an empty array if there are no holes.
  • dimensions - The number of coordinates per vertex in the vertices array:
    • 2 if the vertices array is made of x and y coordinates only.
    • 3 if it is made of x, y and z coordinates.
      Only the first two are used for triangulation (x and y), and the rest are ignored.

Returns:

A list of integers. They are indices into the point array (not the flattened vertices array).
Every 3 integers represent the corner vertices of a triangle.
To look up coordinates in the flattened vertices array, multiply the index by dimensions:

x = vertices[i * dimensions]
y = vertices[i * dimensions + 1]

Convenience F# API: earcut_xy and earcut_XY

If your points are objects with x/y (or X/Y) properties, you can use the convenience functions earcut_xy and earcut_XY instead of manually flattening coordinates. They accept a ResizeArray of points and an optional list of holes (also as ResizeArrays of points), and return a flat float[] of triangle vertex coordinates [x0, y0, x1, y1, x2, y2, ...]. Every six consecutive values represent a triangle.

These functions use F# statically resolved type parameters, so any object with the matching members will work.

For example given these Polylines from Euclid:

let outerPoly: Polyline2D = ...
let hole1: Polyline2D = ...
let hole2: Polyline2D = ...


// For points with uppercase .X and .Y members:
let triangles = outerPoly.Points |> Earcut.earcut_XY [||]

// With holes:
let holes = [|hole1.Points; hole2.Points|]
let triangles = outerPoly.Points |> Earcut.earcut_XY holes

Examples

Simple polygon (no holes)

// A quadrilateral with 4 vertices, 2D coordinates
let vertices = [| 10.; 0.;  0.; 50.;  60.; 60.;  70.; 10. |]
let triangles = Earcut.earcut(vertices, [||], 2)
// returns [1; 0; 3;  3; 2; 1]
// Triangle 1: points 1, 0, 3
// Triangle 2: points 3, 2, 1

// Retrieve triangle vertex coordinates:
for t in 0 .. 3 .. triangles.Count - 1 do
    let i0 = triangles.[t]
    let i1 = triangles.[t + 1]
    let i2 = triangles.[t + 2]
    printfn "Triangle: (%g, %g) (%g, %g) (%g, %g)"
        vertices.[i0 * 2] vertices.[i0 * 2 + 1]
        vertices.[i1 * 2] vertices.[i1 * 2 + 1]
        vertices.[i2 * 2] vertices.[i2 * 2 + 1]

Polygon with a hole

// Outer square: points 0-3, hole square: points 4-7
let vertices = [|
    0.;0.;  100.;0.;  100.;100.;  0.;100.          // outer ring
    20.;20.;  80.;20.;  80.;80.;  20.;80.           // hole
|]
let triangles = Earcut.earcut(vertices, [|4|], 2)    // hole starts at point index 4
// returns [0;4;7; 5;4;0; 3;0;7; 5;0;1; 2;3;7; 6;5;1; 2;7;6; 6;1;2]

3D coordinates

// 4 vertices with x, y, z (z is ignored for triangulation)
let vertices = [| 10.;0.;1.;  0.;50.;2.;  60.;60.;3.;  70.;10.;4. |]
let triangles = Earcut.earcut(vertices, null, 3)
// returns [1; 0; 3;  3; 2; 1]

// Retrieve coordinates using dimensions = 3:
let i = triangles.[0]  // e.g. 1
let x = vertices.[i * 3]       // 0.
let y = vertices.[i * 3 + 1]   // 50.
let z = vertices.[i * 3 + 2]   // 2.

Multiple holes

// Outer polygon with two holes
// Outer: points 0-5, Hole1: points 6-9, Hole2: points 10-13
let triangles = Earcut.earcut(vertices, [|6; 10|], 2)
// holeIndices = [|6; 10|] means:
//   hole 1 starts at point 6  -> vertices.[6 * 2]
//   hole 2 starts at point 10 -> vertices.[10 * 2]

If you pass a single vertex as a hole, Earcut treats it as a Steiner point.

Note that Earcut is a 2D triangulation algorithm, and handles 3D data as if it was projected onto the XY plane (with Z component ignored).

If your input is a multi-dimensional array (e.g. GeoJSON Polygon),
you can convert it to the format expected by Earcut with Earcut.flatten:

let data = Earcut.flatten(geojson.geometry.coordinates)
let triangles = Earcut.earcut(data.vertices, data.holes, data.dimensions)

Verification of triangulation correctness

After getting a triangulation, you can verify its correctness with Earcut.deviation:

let deviation = Earcut.deviation(vertices, holes, dimensions, triangles)

Returns the relative difference between the total area of triangles and the area of the input polygon.
0 means the triangulation is fully correct.

Build for .NET 4.7 and 6.0

dotnet build

Build to JS with Fable

If you don't have Fable installed yet run:

dotnet tool install fable

then build to JS with:

dotnet fable

Run Tests

build to JS with dotnet fable
run tests with node Test/test.js

Images of test cases

bad-diagonals: alternate text is missing from this package README image

bad-hole: alternate text is missing from this package README image

boxy: alternate text is missing from this package README image

building: alternate text is missing from this package README image

collinear-diagonal: alternate text is missing from this package README image

dude: alternate text is missing from this package README image

eberly-3: alternate text is missing from this package README image

eberly-6: alternate text is missing from this package README image

filtered-bridge-jhl: alternate text is missing from this package README image

hilbert: alternate text is missing from this package README image

hole-touching-outer: alternate text is missing from this package README image

hourglass: alternate text is missing from this package README image

issue111: alternate text is missing from this package README image

issue119: alternate text is missing from this package README image

issue131: alternate text is missing from this package README image

issue142: alternate text is missing from this package README image

issue149: alternate text is missing from this package README image

issue16: alternate text is missing from this package README image

issue17: alternate text is missing from this package README image

issue186: alternate text is missing from this package README image

issue29: alternate text is missing from this package README image

issue34: alternate text is missing from this package README image

issue35: alternate text is missing from this package README image

issue45: alternate text is missing from this package README image

issue52: alternate text is missing from this package README image

outside-ring: alternate text is missing from this package README image

rain: alternate text is missing from this package README image

self-touching: alternate text is missing from this package README image

shared-points: alternate text is missing from this package README image

simplified-us-border: alternate text is missing from this package README image

steiner: alternate text is missing from this package README image

touching-holes: alternate text is missing from this package README image

touching-holes2: alternate text is missing from this package README image

touching-holes3: alternate text is missing from this package README image

touching-holes4: alternate text is missing from this package README image

touching-holes5: alternate text is missing from this package README image

touching-holes6: alternate text is missing from this package README image

touching2: alternate text is missing from this package README image

touching3: alternate text is missing from this package README image

touching4: alternate text is missing from this package README image

water-huge2: alternate text is missing from this package README image

water: alternate text is missing from this package README image

water2: alternate text is missing from this package README image

water3: alternate text is missing from this package README image

water3b: alternate text is missing from this package README image

water4: alternate text is missing from this package README image

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.21 50 3/11/2026
3.0.2-r3 437 11/8/2025
3.0.2-r2 120 11/8/2025
3.0.2-r1 116 11/8/2025

### Added

- earcut_XY function for point objects with X/Y properties
- earcut_xy function for point objects with x/y properties