pub trait BuildShell {
    // Provided method
    fn tetrahedron(
        points: [impl Into<Point<3>>; 4],
        objects: &mut Service<Objects>
    ) -> Tetrahedron { ... }
}
Expand description

Build a Shell

Provided Methods§

source

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

Build a tetrahedron from the provided points

Implementors§