pub trait Triangulate: Sized {
    fn triangulate_into_mesh(
        self,
        tolerance: impl Into<Tolerance>,
        mesh: &mut Mesh<Point<3>>
    ); fn triangulate(self, tolerance: impl Into<Tolerance>) -> Mesh<Point<3>> { ... } }
Expand description

Triangulate a shape

Required Methods

Triangulate a partial shape into the provided mesh

This is a low-level method, intended for implementation of Triangulate. Most callers should prefer Triangulate::triangulate.

Provided Methods

Triangulate the shape

Implementors