pub trait BuildSolid {
    // Provided methods
    fn empty() -> Solid { ... }
    fn tetrahedron(
        points: [impl Into<Point<3>>; 4],
        services: &mut Services
    ) -> Tetrahedron { ... }
}
Expand description

Build a Solid

Provided Methods§

source

fn empty() -> Solid

Build an empty solid

source

fn tetrahedron( points: [impl Into<Point<3>>; 4], services: &mut Services ) -> Tetrahedron

Build a tetrahedron from the provided points

See BuildShell::tetrahedron for more information.

Implementors§