Earcut.NET 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Earcut.NET --version 1.0.0
                    
NuGet\Install-Package Earcut.NET -Version 1.0.0
                    
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.NET" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Earcut.NET" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Earcut.NET" />
                    
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.NET --version 1.0.0
                    
#r "nuget: Earcut.NET, 1.0.0"
                    
#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.NET@1.0.0
                    
#: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.NET&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Earcut.NET&version=1.0.0
                    
Install as a Cake Tool

Earcut.NET

Build codecov NuGet

A C# port of the mapbox/earcut polygon triangulation library.

Note: This is a 100% AI-driven port, created entirely by AI agents to demonstrate modern .NET development practices.

Fast and robust ear-clipping polygon triangulation library for .NET 8+.

Features

  • Fast polygon triangulation using ear-clipping algorithm
  • Supports holes
  • Zero-order curve spatial indexing for performance
  • Modern C# implementation with .NET 8+ optimizations
  • Uses ReadOnlySpan for zero-copy performance

Usage

using Earcut;

// Simple polygon
double[] coords = [0, 0, 1, 0, 0.5, 1];
int[] triangles = Earcut.Triangulate(coords);

// Polygon with holes
double[] coords = [0, 0, 10, 0, 10, 10, 0, 10,  // outer ring
                   2, 2, 2, 8, 8, 8, 8, 2];      // hole
int[] holeIndices = [4];  // hole starts at vertex 4
int[] triangles = Earcut.Triangulate(coords, holeIndices);

Building

dotnet build

Testing

dotnet test

Benchmarking

dotnet run -c Release --project bench/Earcut.Benchmarks

License

ISC License - Same as the original earcut library

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

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
1.1.0 0 2/19/2026
1.0.5 0 2/19/2026
1.0.4 0 2/18/2026
1.0.2 16 2/18/2026
1.0.0 33 2/18/2026