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

Build a Face

Provided Methods§

source

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

Build a triangle

Implementors§