three
Version:
JavaScript 3D library
29 lines (22 loc) • 850 B
JavaScript
import earcut from './lib/earcut.js';
/**
* An implementation of the earcut polygon triangulation algorithm.
* The code is a port of [mapbox/earcut](https://github.com/mapbox/earcut).
*
* @see https://github.com/mapbox/earcut
*/
class Earcut {
/**
* Triangulates the given shape definition by returning an array of triangles.
*
* @param {Array<number>} data - An array with 2D points.
* @param {Array<number>} holeIndices - An array with indices defining holes.
* @param {number} [dim=2] - The number of coordinates per vertex in the input array.
* @return {Array<number>} An array representing the triangulated faces. Each face is defined by three consecutive numbers
* representing vertex indices.
*/
static triangulate( data, holeIndices, dim = 2 ) {
return earcut( data, holeIndices, dim );
}
}
export { Earcut };