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

Build a Face

Provided Methods§

source

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

Build a triangle

Implementors§