krh_earcut 0.1.0

A simple earcut polygon triangulation algorithm implementation
Documentation
1
2
3
4
5
6
7
8
9
# krh_earcut

A simple implementation of the earcut polygon triangulation algorithm, based on [this blog post](https://tchayen.github.io/posts/triangulation-of-polygons) and the [mapbox implementation](https://github.com/mapbox/earcut).

No validation is performed on input data for maximal simplicity.

## `no_std`

This crate is no_std compatible, but requires the `alloc` crate to be available.