pub fn triangulate_with_edges<'a, E>(
pts: &[(f64, f64)],
edges: E,
) -> Result<Vec<(usize, usize, usize)>, Error>
Expand description
Triangulates a set of points with certain fixed edges. The edges are assumed to form closed boundaries; only triangles within those boundaries will be returned.